Git Product home page Git Product logo

Comments (7)

ahamid avatar ahamid commented on June 15, 2024

I seem to be able to make progress by defining an explicity by_collection filter in the design doc:

function(doc, req) {
  if (doc.collection) {
    emit(doc.collection, doc);
  }
}

from backbone-couchdb.

janmonschke avatar janmonschke commented on June 15, 2024

Sure, there needs to be a filter function with that name.
If you're using the couchapp tool, you could easily copy one of the examples and add your own code.
Do you still get the 404 errors?

from backbone-couchdb.

ahamid avatar ahamid commented on June 15, 2024

Hi Jan, I think adding the explicit filter function above cured the problem (I did: 'couchapp generate by_collection'). Thanks!
Closing and leaving for posterity.

from backbone-couchdb.

jdrake avatar jdrake commented on June 15, 2024

I think the filter function should be something like:

function(doc, req) {
  if (doc.QUERY_VAR && doc.QUERY_VAR==req.query.QUERY_VAR)
    return true;
  else 
    return false;
}

At least, that is what worked for me.

from backbone-couchdb.

janmonschke avatar janmonschke commented on June 15, 2024

Did https://github.com/janmonschke/backbone-couchdb/blob/master/comments_example/filters/by_collection.js not work for you?

from backbone-couchdb.

jdrake avatar jdrake commented on June 15, 2024

Ahh, I did not see that. Thank you. Do you think it would it be worth it to put that function in the main docs?

from backbone-couchdb.

janmonschke avatar janmonschke commented on June 15, 2024

Maybe I should add it to the overall README of the project.

from backbone-couchdb.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.