我有一个有几个对象的模型:
//Model
Friend = Backbone.Model.extend({
//Create a model to hold friend attribute
name: null,
});
//objects
var f1 = new Friend({ name: "Lee" });
var f2 = new Friend({ name: "David"});
var f3 = new Friend({ name: "Lynn"});
而且,我会将这些朋友对象添加到集合中:
//Collection
Friends = Backbone.Collection.extend({
model: Friend,
});
Friends.add(f1);
Friends.add(f2);
Friends.add(f3);
现在我想根据朋友的名字得到一个模型。我知道我可以添加一个ID
属性来实现这一点。但我认为应该有一些更简单的方法来做到这一点。