我有我的看法:
var TryView = Backbone.View.extend({
initialize: function(){
this.render();
},
render: function(){
var test = this.collection.get(0);
this.collection.each(function(model){
document.write(model.id+"<br>");
});
}
});
以及使用一些现有(工作)集合创建它的顺序。
var testView = new TryView({collection: test.TestCollection});
但我得到了错误:
对象函数 (){ parent.apply(this, arguments); 没有方法'get'
和 fetch 一样