更改Backbone Model默认属性

时间:2013-09-04 10:42:32

标签: javascript backbone.js

我有一个Backbone View。我希望在某些点击事件中,我能够更改模型的默认属性。

1 个答案:

答案 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