当我的Backbone模型中的两个属性(“a”或“b”)中的任何一个发生变化时,我想计算第三个属性“c”:
initialize: function() {
this.bind("change:a", this.calculateC);
this.bind("change:b", this.calculateC);
},
calculateC: function() {
this.attributes.c = ...
}
如果同时在模型上同时设置a和b,防止c被计算两次的好方法是什么?
答案 0 :(得分:2)
不会同时设置属性,它们将被设置为一次,因此您需要查看这两个事件。 relevant code looks like this:
// Set a hash of model attributes on the object, firing `"change"` unless you
// choose to silence it.
set : function(attrs, options) {
// ...
// Update attributes.
for (var attr in attrs) {
var val = attrs[attr];
if (!_.isEqual(now[attr], val)) {
now[attr] = val;
// ...
if (!options.silent) this.trigger('change:' + attr, this, val, options);
}
}
// Fire the `"change"` event, if the model has been changed.
if (!alreadyChanging && !options.silent && this._changed) this.change(options);
您可以看到设置了其中一个属性,然后触发了其更改事件,然后为下一个属性重复该过程。如果您只想要一个事件,那么您应该只绑定整个模型的更改事件。
为了完整起见,我应该提到Model#set
的接口文档没有指定何时触发单个更改事件的任何特定行为,它只表示它们将被触发。