3

我正在使用 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.

我无法弄清楚我做错了什么,在这种情况下,阅读源代码并没有帮助我的困惑。有没有人经历过这种情况,或者可以告诉我我定义/未正确定义的内容?

4

3 回答 3

2

可能和我在这里遇到的一样。简而言之,ember-data 期望资源列表嵌套在资源名称下,例如,如果你得到 /users/ 那么结果应该是{ "users": [] }而不是顶级数组[]

于 2012-05-24T16:31:58.330 回答
0

你在使用来自 github master 的 ember/ember-data 吗?这是由于过去几个月某些版本的不兼容造成的。一旦我对这两个错误都使用了master,错误就消失了(以及许多其他错误)。

于 2012-04-27T23:37:54.680 回答
0
App.sourcesController = Ember.ArrayProxy.create
     content: []

App.ListSourcesView = Ember.View.extend
     // I don't believe you can use file paths in this way
     // Use a script tag with a  data-template-name as shown in the docs.
     // If you really need them from a file, then you will need to compile the templates
     // Yourself. There's plenty of SO Questions re: this.
     templateName: 'source-list'
     sourcesBinding: 'App.sourcesController'

// Always access ember object properties through the get and set interfaces.
// This will ensure that views get the proper notifications when props change.
App.sourcesController.set("content", App.store.findAll App.Source);

如果这不适合你,请告诉我!

于 2012-05-03T05:50:41.060 回答