バックボーン コレクションをループできないようです。このトピックをいくつかのスレッドで見てきましたが、それらの解決策はどれも役に立ちません。
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] のみが表示され、各モデルも表示されると予想されます。ここで私が間違っていることを誰かが知っていますか?