帮帮我。 如何从ID获取模型?
var Sidebar = Backbone.Model.extend({});
var sidebar = new Sidebar;
var Library = Backbone.Collection.extend({})
lib=new Library();
lib.add(sidebar,{at: 234});
console.log(lib.get(234))//undefined ..Why??
答案 0 :(得分:4)
您似乎混合了id
和index
,这些不可互换。
要按id
检索,您需要使用Model
进行设置:
var sidebar = new Sidebar({ id: 234 });
// ...
console.log(lib.get(234));
index
是集合中的展示位置:
lib.add(sidebar, { at: 0 });
console.log(lib.at(0)); // sidebar
console.log(lib.models); // Array: [ sidebar ]
console.log(lib.models[0]); // sidebar
答案 1 :(得分:0)
试试这个
var Sidebar = Backbone.Model.extend({
// Need to set this. Otherwise the model
// does not know what propert is it's id
idAttribute : 'at'
});
var sidebar = new Sidebar();
var Library = Backbone.Collection.extend({})
var lib=new Library();
// Set the Model
sidebar.set({at:234});
// Add it to the collection
lib.add(sidebar);
console.log(lib.get(234))
<强> Check Fiddle 强>
您添加集合will be spliced at that index
的方式以及在该索引处插入的模型。我不认为那不是你想要的。因此,您需要先将属性设置为模型,然后将其添加到集合中。