私は 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
。
私は自分が何を間違っているのか理解できず、この場合、ソースを読んでも混乱は解消されません。誰かがこれを経験したことがありますか、または私が間違って定義した/定義していないものを教えてもらえますか?