0
var BasicModel = Backbone.Model.extends({

   url : function() {
       return "/something";
    }

});

var basicModel = new BasicModel();
basicModel.fetch();

如果 BasicModel 是一个集合,那么以下是可能的

   this.on("add", function (model) {
         console.log(model);
    });

我可以为 Backbone 模型绑定任何 lisiting 事件,在 fetch 发生后调用它吗?

4

2 回答 2

1

使用change事件。

在你的模型中。

this.on("change", function);

或者在你看来

this.model.on("change", function);
于 2013-10-21T13:53:53.973 回答
0
basicModel.fetch({success:function(){
      //do whatever you want
}});
于 2013-10-21T14:21:04.190 回答