我有一个定义的模型和一个集合:
var Box = Backbone.Model.extend({
defaults: {
x: 0,
y: 0,
w: 1,
h: 1,
color: "black"
}
});
var Boxes = Backbone.Collection.extend({
model: Box
});
当用模型填充集合时,我需要一个由Box模型组成的新Boxes集合,该模型具有完整集合中包含的特定颜色属性,我可以这样进行:
var sorted = boxes.groupBy(function(box) {
return box.get("color");
});
var red_boxes = _.first(_.values(_.pick(sorted, "red")));
var red_collection = new Boxes;
red_boxes.each(function(box){
red_collection.add(box);
});
console.log(red_collection);
这可行,但是我发现它有点复杂且效率低下。有没有办法以更简单的方式来做同样的事情?
这是我描述的代码:http://jsfiddle.net/HB88W/1/
最佳答案
我喜欢返回集合的新实例。这使这些过滤方法可链接(例如boxes.byColor("red").bySize("L")
)。
var Boxes = Backbone.Collection.extend({
model: Box,
byColor: function (color) {
filtered = this.filter(function (box) {
return box.get("color") === color;
});
return new Boxes(filtered);
}
});
var red_boxes = boxes.byColor("red")