Is this being issued on a command line? Is everything escaped properly?
On Sun, Sep 23, 2012 at 5:03 PM, john.tiger <[email protected]>wrote:
> was there a change from ?key=<some value> what is the right syntax ?
>
> /_design/ddoc/_view/**getuserdoc?key="jdoe"
>
> => "error":"bad_request","reason"**:"invalid_json"}
> so does "key"="jdoe", so does key=jdoe
>
> but
> ?{key:"jdoe"} returns all doctypes="user" but not just jdoe as wanted
>
> here's the view:
>
> "views":{
> "getuserdoc":{
> "map":"function(doc) {
> if (doc.doctype == 'user'){
> emit(doc.username, doc);
> }
> }"
> }
>