コレクションビューに関数があります:
addAll: function() {
console.log(this.collection);
console.log(this.collection.length);
console.log(this.collection.models);
this.collection.each(this.addOne);
},
結果が次の理由:
1.
d
_byCid: Object
_byId: Object
length: 6
models: Array[6]
__proto__: x
2.0
3. []
最初の結果で、this.collection にモデルと長さ = 6 があることがわかります