我想觀察模型的每個實例的更改。考慮到這個小例子,當一個類別的項目數量發生變化時,百分比值應該改變爲每個其他類別。在這個例子中它不會更新PERCENTVALUE:所有實例上的模型實例dependend的計算屬性
App.Category = DS.Model.extend({
name: DS.attr('string'),
items: DS.hasMany('App.Item'),
percentValue: function() {
var total_items = App.Item.all().get('length')
var category_items = this.get('items').get('length')
return total_items == 0 ? 0 : (100 * category_items/total_items).toFixed()
}.property('@each.items.length')
})
App.Item = DS.Model.extend({
name: DS.attr('string'),
})
category = App.Category.createRecord({name: 'Category1'})
item = App.Item.createRecord({name: 'Item1'})
category.get('items').pushObject(item)
似乎'items.each'只能觀察一個類別的項目,而不是所有類別的項目。我希望如果CategoryA的曲目發生變化,那麼CategoryB的percentValue也應該更新。非常感謝其他提示:) –
確實,'items。@ each'只會觀察類別的項目。你嘗試過'App.Item.all.length'還是'@ each.items。@ each'? –
是的,都不這樣做:( –