我在使用骨干和绑定事件时遇到了一个奇怪的问题。我会看看我能否以清晰的方式解释它(这是一个裁剪的例子......)
在视图中,我在initialize方法中有以下代码
var MyView = Backbone.View.extend({
initialize: function(options) {
//[...]
this.items = [];
this.collection.on('reset', this.updateItems, this);
this.fetched = false;
},
render: function() {
if (!this.fetched) {
this.collection.fetch(); // fetch the collection and fire updateItems
return this;
}
this.$el = $('#my-element');
this.$el.html(this.template(this.items));
},
updateItems: function() {
this.fetched = true;
this.loadItems();
this.render(); // call render with the items array ready to be displayed
}
}
我的想法是我必须获取集合,处理项目(this.loadItems),然后我设置它。$ el
我遇到的问题是,在updateItems内部,我看不到绑定后添加的任何属性(this.collection.on ...)
似乎绑定是针对视图的冻结版本完成的。我尝试添加属性来测试它,但是在updateItems内部(如果被集合重置事件触发,则在render中)我看不到添加的属性。
我解决了它在获取之前绑定集合的问题,如下所示:
render: function() {
if (!this.fetched) {
this.collection.on('reset', this.updateItems, this);
this.collection.fetch();
return this;
}
但这是一种奇怪的行为。似乎在绑定时,会生成'this'的副本,而不是引用。
我是对的吗?或者我做错了什么?
答案 0 :(得分:0)
您应该在集合视图的初始化阶段执行绑定:
// View of collection
initialize: function() {
this.model.bind('reset', this.updateItems);
}
现在,当集合上的fetch完成时,将调用 updateItems 方法。 当然,在执行此操作之前,您需要绑定模型和视图:
var list = new ListModel();
var listView = new ListView({model: list});
list.fetch();