该文档有一个使用ArrayController
此模板的示例:
{{#each MyApp.listController}}
{{firstName}} {{lastName}}
{{/each}}
这是如何ArrayController
使用的:
MyApp.listController = Ember.ArrayController.create();
$.get('people.json', function(data) {
MyApp.listController.set('content', data);
});
这与使用这样的普通数组有何不同?
MyApp.listController = [];
$.get('people.json', function(data) {
MyApp.set('listController', data);
});