我是 Ember.js 的新手,尝试在路由中使用模型函数时遇到问题。
我一直在关注 ember 网站上的文档,到目前为止有以下内容。
App.Latest = DS.Model.extend({
title: DS.attr('string'),
volume: DS.attr('string'),
issue: DS.attr('string')
});
App.Latest.FIXTURES = [{
"title": "test Title",
"volume": "test volume",
"issue": "test issue",
}];
App.LatestRoute = Ember.Route.extend({
model: function() {
return App.Latest.find();
}
});
这在 chrome 的控制台中为我提供了以下信息
未捕获的类型错误:无法读取未定义的属性“查找”
谢谢
编辑:我正在使用 ember-1.0.0-rc.3 并且我已经设置了适配器。
修复:确保你不会像我一样犯错误,并检查你的 ember 数据是最新的