我正在尝试使用 fetch 初始化骨干网中的集合,我认为这是:
initialize: function()
{
_.bindAll(this, 'render', 'addItem', 'appendItem');
this.collection = new MembersCollection();
this.collection.bind('add', this.appendItem);
this.collection.fetch({success: _.bind(function(blah)
{
console.log(blah);
this.render();
}, this)});
}
它似乎正在工作,我得到了一个成功的响应,具有正确数量的模型,它为每个模型呈现正确数量的视图,但是,如果我检查 model.attribute 值,它只包含我的默认值,没有来自服务器?
如果我检查我的 JSON 响应,我确实在那里看到了正确的数据,是否有什么我可能错过了设置数据所需的内容?