質問

How can I filter through multiple Backbone.js collections? Something like this:

var a = _.filter([b.models, c.models], function(model){
    return model.get('d');
});

Thanks!

役に立ちましたか?

解決

You can make this work by combining the two models with _.union

var combinedCollection = _.union(b.models, c.models);
var a = _.filter(combinedCollection, function(model){
    return model.get('d');
});
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top