我正在使用Ember-Rails構建一個帶有Rails API的前端Ember應用程序,用於beckend。我一直在努力實施身份驗證,我得出了以下錯誤: Cannot read property 'extend' of undefined
試圖如下擴展路由時:Ember-Rails「無法讀取未定義的屬性」擴展「
App.AdminRoute = App.AuthenticateRoute.extend({
model: function(params) {
return this.store.find('user', params.id);
},
});
我還有一個AuthenticateRoute定義如下:
App.AuthenticateRoute = Ember.Route.extend({
//yada yada
});
我更多或更少遵循指南上找到:http://www.embercasts.com/episodes/client-side-authentication-part-2
我不知道爲什麼,這是行不通的,但我發現我的AuthenticateRoute 可能可以從其他路線延伸,我覺得這很奇怪。