テンプレート内で計算されたプロパティを使用する場合、その計算された値に影響を与える方法で状態が変更されたことをテンプレートに知らせるにはどうすればよいですか?
たとえば、以下に示すように、インクリメントできる 2 つの数値とその合計を表示していたとします。
App.ApplicationController = Ember.Controller.extend({
x:0,
y:0,
sum: function(){return this.get("x") + this.get("y");}.property("content.sum"),
incX: function(){ this.set("x", this.x+1);},
incY: function(){ this.set("y", this.y+1);},
});
<script type="text/x-handlebars">
<button {{action "incX"}}> {{x}} </button>
<button {{action "incY"}}> {{y}} </button>
<p> {{sum}} </p>
</script>
x と y の値は表示で更新されますが、合計は更新されません。合計がxとyに依存していることをハンドルバー/エンバーに伝えるにはどうすればよいですか?