我正在嘗試製作一個應用程序。我有一個計算的屬性和控制器看起來是這樣的:Ember.JS中的動態計算屬性已棄用?
// 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.
什麼是另一種方式來做到這一點?
哦,我知道了,謝謝。有沒有可能有一個例子使用上面發佈的代碼?此刻,我有點偏離自己的深度。 – andy 2013-02-11 12:31:15
當然,我用代碼更新了我的帖子。 – Deif 2013-02-11 12:35:08
非常感謝一堆! – andy 2013-02-12 09:56:32