私は残り火アプリケーションを作ろうとしています。計算されたプロパティがあり、コントローラーは次のようになります。
// The Controller
Todos.Controller = Ember.Controller.create({
// ** SNIP ** //
countCompleted: function()
{
return this.get('todos').filterProperty('completed', true).length
}.property(),
});
// The View
{{Todos.Controller.countCompleted.property}} Items Left
現在、私がフォローしているチュートリアルでは、古いバージョンの Ember.JS を使用しています。すべてのエラーを修正しましたが、これは次のとおりです。
Uncaught Error: assertion failed: Ember.Object.create no longer supports defining computed properties.
これを行う別の方法は何ですか?