Backbonejs集长度始终为零(Backbonejs collection length alw

2019-09-16 13:33发布

我在集合视图功能:

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的第一个结果

Answer 1:

当心的console.log可以欺骗你



文章来源: Backbonejs collection length always zero
标签: backbone.js