Thanks. It wasn't clear from the wiki what i was doing wrong, but then I realized that it might appear in the url of the web interface when I run it there, and it does, in a slightly modified version.
thanks. On Sun, Sep 4, 2011 at 8:50 AM, Victor Nicollet <[email protected]>wrote: > Hello, > > You're querying for the design document itself, so that is what you are > receiving. To get the contents of a specific view, you need to ask for that > view: > > http://localhost:5984/better1/_design/all_products/_view/all_products > > You may want to peek at the Wiki on that topic for more information : > http://wiki.apache.org/couchdb/HTTP_view_API > > -- VN > > On 4 September 2011 14:06, Larry White <[email protected]> wrote: > > > Hi, > > I'm sending a query that looks like this: > > > > http://localhost:5984/better1/_design/all_products > > > > and I get the view query text, instead of the results: > > > > > > > {"_id":"_design/all_products","_rev":"5-0263a7865636ac57eae960b8ad2b63ac","language":"javascript","views":{"all > > products":{"map":"function(doc) {\n if (doc.drr_class=='Product') { > > \n\temit(null, doc); \n\t} \n}"}}} > > > > How do I get the actual results (ie a list of 'products'). It works > > fine from within the Couchbase web interface. > > > > Thanks much. > > >
