Hi,<br><br>Thanks for the fantastic library.<br><br>I was wondering if there is a way to pass complex data, such as arrays, as keys to the invoke-view function.  The reason I'm asking is that couchdb seems to only accept as query string JSON data with double-quoted strings (tested on browser), while parenscript outputs single-quoted strings.  For example,<br>
 <br>   ... :key (ps (list "key1" "key2"))<br><br>generates url<br><br>   myurl?key=['key1', 'key12']<br><br>which causes the server to respond with a JSON parse error.<br><br>However,<br>
<br>   myurl?key=["key1","key2"]<br><br>works fine.<br><br>I'm not sure if this is already covered in the library, or do I have to do some extra escaping to get around it.  Any help would be appreciated.<br>
<br>Thanks!<br><br>Bob<br>