javascript – Backbone.js:如何通过模型ID数组过滤对象集合?

前端之家收集整理的这篇文章主要介绍了javascript – Backbone.js:如何通过模型ID数组过滤对象集合?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个充满模型的Backbone.Collection;让我们说模型是汽车.这个系列是一个伟大的汽车名单.我希望能够从列表中选择一些特定的汽车ID,然后才能从这个集合中获得所选的汽车对象.

我的代码块不起作用;我确信有一种方法可以使用Backbone.js / Underscore.js …我对Backbone / Underscore也很新鲜.

CarList = Backbone.Collection.extend({
    model: Car,filterWithIds: function(ids) {
        return this.filter(function(aCar) { return _.contains(ids,car.id); }
    }
});

有什么指针吗?

解决方法

好的,我想我已经知道了.它接近我的原始代码块,但更新的filterWithIds函数在这里.
filterWithIds: function(ids) {
    return _(this.models.filter(function(c) { return _.contains(ids,c.id); }));
}

对于那些跟随CoffeeScript(我)的人来说,这是CoffeeScript版本.

filterWithIds: (ids) -> _(@models.filter (c) -> _.contains ids,c.id)

这是我的答案;任何代码味道?

原文链接:/js/151853.html

猜你在找的JavaScript相关文章