okay it needed ?key='"jdoe"' single + plus double quotes - I think this needs to be simplified ....

On 09/23/2012 06:03 PM, john.tiger 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);
}
}"
}

Reply via email to