0

我有一个主干视图。我希望在某些点击事件上,我能够更改模型的默认属性。

4

1 回答 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 回答