我有一个主干视图。我希望在某些点击事件上,我能够更改模型的默认属性。
问问题
160 次
1 回答
0
内部视图初始化使用.on
函数(这里是 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
。更多信息
于 2013-09-04T11:27:20.110 回答