javascript - backbone视图的model事件被重复绑定的问题
巴扎黑
巴扎黑 2017-04-10 14:50:44
0
2
328

最近在用backbone开发项目时,遇到在model的change事件被重复绑定的问题。我在来回切换几次view(页面)的时候,change就会被重复绑定几次。
代码如下:

 var ItemView = Backbone.View.extend({
     tagName: 'p',
     className:'acc-item',
     initialize:function(opts){
        this.template = opts.mainView.itemTpl;
        this.dayView = opts.dayView;
        this.listenTo(this.model, 'destroy', this.remove);
        this.listenTo(this.model,'change',this.render);
     },
     render:function(){
        return this;
     },
     remove:function(){

    } 
});

请教一下,该怎么解决
巴扎黑
巴扎黑

reply all(2)
Peter_Zhu

解决问题了,在initialize里面写this.model.off('change')和this.model.off('destroy')即可!

左手右手慢动作

Backbone View 自身有 remove 方法, 被楼主覆盖掉了.
看一下里边做了什么: http://backbonejs.org/docs/backbone.html#section-136

jsremove: function() {
  this.$el.remove();
  this.stopListening();
  return this;
},
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template