Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I chain collection methods in backbone.js?

        var Collection = this.collection;
        Collection = Collection.where({county: selected});
        Collection = Collection.groupBy(function(city) {
          return city.get('city')
        });
        Collection.each(function(city) {
          // each items
        });

I tried something like this, but it's wrong:

Object[object Object],[object Object],[object Object] has no method 'groupBy' 
share|improve this question

2 Answers

up vote 6 down vote accepted

You cannot access Backbone.Collection methods that way (hope I'm not wrong) but as you probably know most of the Backbone methods are Underscore.js based methods so that means if you look at the the source code for where method you will see it uses Underscore.js filter method, so this means you can achieve what you want doing so:

var filteredResults = this.collection.chain()
    .filter(function(model) { return model.get('county') == yourCounty; })
    .groupBy(function(model) { return model.get('city') })
    .each(function(model) { console.log(model); })
    .value();

.value() isn't of any use to you here, you are making "stuff" inside the .each method for each of the model but if you would like to let's say return an array of filtered cities you can do with .map and in filteredResults will be your results

var filteredResults = this.collection.chain()
    .filter(function(model) { return model.get('county') == yourCounty; })
    .map(function(model) { return model.get('city'); })
    .value();
console.log(filteredResults);
share|improve this answer

The underscore.js provides also the chain -function and in backbone there is a wrapper for that in the collection

this.collection.chain()
  .where({county: selected})
  .groupBy(function(city) {
    return city.get('city');
  })
  .each(function(city) {
    // each items
  });

Of course this solution is not tested, but something like this should work.

hope this helps!

share|improve this answer
Now, I get: Uncaught TypeError: Object [object Object] has no method 'where' – user1344853 Aug 2 '12 at 12:05
1  
where doesn't work with chain on backbone collections. stackoverflow.com/questions/13090949/… – Bart Oct 29 '12 at 13:11

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.