所以,我正在尝试使用来自API端点/categories
和Ember Data的数据动态地在我的Ember应用程序中构建路由。为了做到这一点,我在我的模型中添加了didLoad
方法,该方法由控制器调用并设置为该控制器的属性。我将路由映射到我的路由器,一切正常。当我尝试设置一个控制器,其内容属性由findQuery检索的服务器中的数据设置时,真正的麻烦就开始了。
这是错误:
TypeError {} "Object /categories/548/feeds has no method 'eachRelationship'"
这是代码:
window.categoryRoutes = [];
App.Categories = DS.Model.extend({
CATEGORYAFFINITY: DS.attr('boolean'),
CATEGORYID: DS.attr('number'),
CATEGORYNAME: DS.attr('string'),
CATEGORYLINK: function () {
var safeUrl = urlsafe(this.get('CATEGORYNAME'));
categoryRoutes.push(safeUrl);
return safeUrl;
}.property('CATEGORYNAME'),
didLoad: function () {
var categoryLink = this.get('CATEGORYLINK');
var categoryId = this.get('CATEGORYID');
App.Router.map(function () {
this.resource(categoryLink, function () {
// some routes
});
});
App[Ember.String.classify(categoryLink) + 'Route'] = Ember.Route.extend({
setupController: function(controller, model) {
// source of error
this.controllerFor(categoryLink).set(
'content',
this.store.findQuery('/categories/' + categoryId + '/feeds', {
appid: 'abc123def456',
lat: 39.75,
long: -105
})
);
}
});
}
});
感谢任何'halp'!
另外,如果我这样做完全错了,并且有更多类似Ember的方法,我想知道。
答案 0 :(得分:0)
我想出来了。我收到此错误是因为我将一个字符串而不是一个真正的'type'从App.Helpers对象传递给我覆盖的一些自定义RESTAdapter代码中的提取方法。
解决方案是使用我的自定义类型名称在App.Helpers中传入相应的模型助手。
重写RESTAdapter.serializer.extractMany
方法中的类似内容:
var reference = this.extractRecordRepresentation(loader, App.Helpers[root], objects[i]);