我有一个Backbone View。我希望在某些点击事件中,我能够更改模型的默认属性。
答案 0 :(得分:0)
内部视图初始化使用.on
函数(here is doc)。例如:
initialize: function(options) {
model.off(); // if you forget to write the line, it works how many time you rendered this view
model.on( 'all', this._handleChanges, this); // all or another event name
}
修改强>
我使用了.off()
,因为我在on
内写了所有内容。我做off
事件,我与on
绑定。 For more inf