改变model.save()事件在主干中发射两次

我已经看到了倾听模型的变化。 当模型渲染功能发生变化时会调用,并提示警告窗口。 但它来了两次,意味着由于两个更改事件,render函数正在调用两次。

WineDetails视图
app.WineView = Backbone.View.extend({

    template:_.template($('#tpl-wine-details').html()),

    initialize:function () {
        this.model.bind("change", this.render, this);

    },
    render:function (eventName) {
  if(eventName)alert("changed")
        $(this.el).html(this.template(this.model.toJSON()));
        return this;
    },

     events:{
        "change input":"change",
        "click .save":"saveWine",
        "click .delete":"deleteWine"
    },
    change:function (event) {
        var target = event.target;
        console.log('changing ' + target.id + ' from: ' + target.defaultValue + ' to: ' + target.value);
        // You could change your model on the spot, like this:
        // var change = {};
        // change[target.name] = target.value;
        // this.model.set(change);
    },
    saveWine:function () {
        this.model.set({
            name:$('#name').val(),
            grapes:$('#grapes').val(),
            country:$('#country').val(),
            region:$('#region').val(),
            year:$('#year').val(),
            description:$('#description').val()
        });
        if (this.model.isNew()) {
            var self = this;
         app.router.wineList.create(this.model,{wait:true,success:function(){
                 app.router.navigate('wines/'+self.model.id,false);
         }});//add event,request event on collection will be triggered

        } else {
            this.model.save();//change event,request event on model will be triggered
        }
        return false;
    },
onClose:function()
    {
        alert("onclose");
        this.model.unbind("change",this.render);
    }

它并不是因为僵尸视图,因为我有以下代码

Backbone.View.prototype.close=function()
{
    alert("closing view "+this);
    if(this.beforeClose){
        this.beforeClose();
    }
    this.remove();
    this.unbind();
    if(this.onClose){
        this.onClose();
    }

} 

请告诉我这段代码有什么问题。 谢谢你 :)


所以,由于您没有提供有关Model#save呼叫的信息,因此我认为它是您认为的那个。 我还会假设这个问题不是僵尸视图,因为你正在遵循一个过时的方法。 我会在这里猜测可能发生的事情:

this.model.set({
  name:$('#name').val(),
  grapes:$('#grapes').val(),
  country:$('#country').val(),
  region:$('#region').val(),
  year:$('#year').val(),
  description:$('#description').val()
});
// ...
this.model.save();

好吧,第一部分( set方法)将触发第一个change事件。
第二部分, save方法可能引发另一个变化。 另一set确实将使用从服务器发回的属性完成。

可能的问题解决方案:
save可以传递的属性,以及wait标志推迟使用set方法,直到服务器响应:

this.model.save({
  name:$('#name').val(),
  grapes:$('#grapes').val(),
  country:$('#country').val(),
  region:$('#region').val(),
  year:$('#year').val(),
  description:$('#description').val()
}, {wait: true});

您也可以通过创建一个新的模型实例来尝试它,如:

var wine = new WineModel({
    name:$('#name').val(),
    grapes:$('#grapes').val(),
    country:$('#country').val(),
    region:$('#region').val(),
    year:$('#year').val(),
    description:$('#description').val()
});

然后将其保存为:

wine.save(null, success: function(model){
    // do your call action on call back
},
beforeSend: function() {
    // before save 
}
error: function(model, errors) {
    // on error occurred
});
链接地址: http://www.djcxy.com/p/63103.html

上一篇: change event of model.save() firing twice in backbone

下一篇: How to unbind all the socket.io events from my backbone view?