コレクション内のモデルを印刷すると、バックボーン コレクションと同じ長さの"undefined" と の 2 つのリストが表示context
されます。collection
var collection = new Backbone.Collection([{x:1},{x:2},{x:3}]);
print(collection.at(0));
{
_callbacks: {
all: {
next: {
callback: function (event, model, collection, options) {...},
context: [undefined, undefined, undefined],
next: {}
},
tail: {}
}
},
_escapedAttributes: {},
_pending: {},
_previousAttributes: {x: 1},
_silent: {},
attributes: {x: 1},
changed: {},
cid: "c11",
collection: [undefined, undefined, undefined]
}