在我看来-从集合中获取数据后,我尝试使用“本机”循环模型-每种方法,但出现错误:
Uncaught TypeError: Object [object Object] has no method 'each'
我仍然可以将我的模型转换为 json 对象..
console.log(models.toJSON()); // giving result
models.each(function(model){
console.log(model); // throw the error.. why..?
})
这是我正在安慰的观点的一部分:
initialize:function(){
var that = this;
this.collection = headerCollection;
this.listenTo(this.collection, "add", this.addAll);
this.collection.fetch();
},
addAll:function(models){
models.each(function(model){
console.log(model);
})
console.log(models.toJSON());
},
会是什么问题?