似乎我无法遍历主干集合。我已经在几个线程中看到了这个主题,但这些解决方案都没有帮助。
render:function () {
this.$el.html(this.template(this.model.attributes));
var that = this;
console.log(this.projects.models);
_.each(this.projects.models, function(model) { console.log(model); });
return this;
}
从这里我的控制台只显示 Array[2] 我希望看到每个模型。有谁知道我在这里做错了什么?