5

Ember 似乎找不到我在我的属性模型上实现的findAll()和方法。find()以下是我得到的错误:

TypeError: App.Property.findAll is not a function

Error: assertion failed: Expected App.Property to implement `find` for use in 'root.property' `deserialize`. Please implement the `find` method or overwrite `deserialize`.

我的路由器是这样设置的:

App.Router = Ember.Router.extend({
    showProperty: Ember.Route.transitionTo('property'),
    root: Ember.Route.extend({
        home: Ember.Route.extend({
            route: '/',
            connectOutlets: function(router) {
                router.get('applicationController').connectOutlet('home', App.Property.findAll());
            }
        }),
        property: Ember.Route.extend({
            route: '/property/:property_id',
            connectOutlets: function(router, property) {
                router.get('applicationController').connectOutlet('property', property);
            },
        }),
    })
});

这是我的模型:

App.Property = Ember.Object.extend({
    id: null,
    address: null,
    address_2: null,
    city: null,
    state: null,
    zip_code: null,
    created_at: new Date(0),
    updated_at: new Date(0),
    find: function() {
        // ...
    },
    findAll: function() {
        // ...
    }
});

我究竟做错了什么?这些方法应该放在 Property 模型上还是应该放在其他地方?我应该重写deserialize()方法而不是使用find()吗?但即使我使用该解决方法findAll()仍然无法正常工作,我仍然会遇到第一个错误。

谢谢你的帮助。

4

1 回答 1

8

findandfindAll方法应该在 中声明,而reopenClass不是在 中extend,因为您要定义类方法,而不是实例方法。例如:

App.Property = Ember.Object.extend({
    id: null,
    address: null,
    address_2: null,
    city: null,
    state: null,
    zip_code: null,
    created_at: new Date(0),
    updated_at: new Date(0)
});

App.Property.reopenClass({
    find: function() {
        // ...
    },
    findAll: function() {
        // ...
    }
});
于 2012-08-21T18:22:12.497 回答