2

我在集合视图中有一个功能:

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

4

1 回答 1

3

当心console.log 会欺骗你

于 2012-04-15T14:52:35.513 回答