1
我已經試過在餘燼數據16年1月13日模型這樣建立一個計算的屬性:如何在Ember.js中創建計算屬性以查看單個Ember Data屬性是否髒?
export default DS.Model.extend({
name: DS.attr('string'),
isNameDirty: Ember.computed('name', 'hasDirtyAttributes', function() {
return !!this.changedAttributes()['name'];
})
});
但由於某些原因,稱model.save()
物業從來沒有重新計算爲false後,即使name
不再存在在changedAttributes()
。我怎樣才能使這個計算房產工作?
這裏是一個簡化的測試案例:https://ember-twiddle.com/87b1af7abfb103554cb2?openFiles=models.author.js%2C