On Thu, Jun 05, 2014 at 03:06:05AM -0700, Pelle Krøgholt wrote:
> how to do the same with the above $ajax/uri approach? i have tried:
>
> > var startKey =
> encodeURIComponent('["969aee54-76e0-46c7-a585-fa5c13d619d6", {}]')
> > var endKey =
> encodeURIComponent('["969aee54-76e0-46c7-a585-fa5c13d619d6"]')
> > $.ajax({
>     type: "GET",
>     url:
> "http://localhost:5984/todo/_design/todo9/_view/tasks?startKey="+startKey+"&endKey="+endKey,
>     contentType: "application/json",
>     success: function (msg) { console.log('succes: ', msg) },
>     error: function (err){ console.log('error: ', err)}
>     });
> succes:
> Object {offset: 0, total_rows: 7, rows: Array[7]}
>
> hmm but that gives me 7 tasks i had only expected 6 - any hints/suggestions
> ?

I think this is because of your query string parameters names. Can you
try it again using "startkey" and "endkey" (all lower case)?

Matt

-- 
You received this message because you are subscribed to the Google Groups 
"Couchbase Mobile" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/mobile-couchbase/20140605171517.GA1131%40mqmb.local.
For more options, visit https://groups.google.com/d/optout.

Reply via email to