1

特定の属性が変更されたときにBackboneモデルがカスタムイベントを発生させるための良い方法は何ですか?

これまでのところ、これは私が持っている最高のものです:

var model = Backbone.Model.extend({
    initialize: function(){
        // Bind the mode's "change" event to a custom function on itself called "customChanged"
        this.on('change', this.customChanged);
    },
    // Custom function that fires when the "change" event fires 
    customChanged: function(){
        // Fire this custom event if the specific attribute has been changed
        if( this.hasChanged("a_specific_attribute")  ){
            this.trigger("change_the_specific_attribute");
        }
    }
})

ありがとう!

4

2 に答える 2

2

すでに属性固有の変更イベントにバインドできます。

var model = Backbone.Model.extend({
  initialize: function () {
    this.on("change:foo", this.onFooChanged);
  },

  onFooChanged: function () {
    // "foo" property has changed.
  }
});
于 2012-07-22T23:16:03.483 に答える
1

バックボーンには、変更された属性ごとに発生するイベント「change:attribute」がすでにあります。

var bill = new Backbone.Model({
      name: "Bill Smith"
    });

    bill.on("change:name", function(model, name) {
      alert("Changed name to " + name);
    });

    bill.set({name : "Bill Jones"});
于 2012-07-23T03:12:34.593 に答える