如何在 Ember.js 1.0pre 中使用 ArrayController?
从文档:
MyApp.listController = Ember.ArrayController.create();
提出这个:
TypeError: a[c].create is not a function
如果我替换create
为extend
,它会上升:
TypeError: b.addArrayObserver is not a function
谢谢!
如何在 Ember.js 1.0pre 中使用 ArrayController?
从文档:
MyApp.listController = Ember.ArrayController.create();
提出这个:
TypeError: a[c].create is not a function
如果我替换create
为extend
,它会上升:
TypeError: b.addArrayObserver is not a function
谢谢!