我正在使用 ember-data 试用 Ember.js,并定义了以下应用程序:
window.App = Ember.Application.create()
App.store = DS.Store.create
revision: 4
adapter: DS.RESTAdapter.create { bulkCommit: false }
App.Source = DS.Model.extend
# options
primaryKey: '_id'
# fields
name: DS.attr 'string'
raw_text: DS.attr 'string'
App.sourcesController = Ember.ArrayProxy.create
content: App.store.findAll App.Source
App.ListSourcesView = Ember.View.extend
templateName: 'app/templates/sources/list'
sourcesBinding: 'App.sourcesController'
该模板如下所示:
<table>
<thead>
<tr>
<th>ID</th>
<th>Name</th>
</tr>
</thead>
<tbody>
{{#each sources}}
{{view App.ShowSourceView sourceBinding="this"}}
{{/each}}
</tbody>
</table>
当我尝试App.ListSourcesView
在我的页面中加载时,我在 ember-data.js 中收到错误消息: Uncaught TypeError: Cannot read property 'map' of undefined
.
我无法弄清楚我做错了什么,在这种情况下,阅读源代码并没有帮助我的困惑。有没有人经历过这种情况,或者可以告诉我我定义/未正确定义的内容?