我是新來的emberJS,並試圖找出如何將數據從JSON API傳輸到我的模型。所以,我有:(emberJS) - 使用RESTAdaper JSON數據查找TypeError
App.Store = DS.Store.extend({
revision: 12,
adapter : DS.RESTAdapter.create({
url : 'http://eu.battle.net/api/d3/profile/Alucard-2129/?callback=?'
}) });
App.Profiles = DS.Model.extend({
name: DS.attr("string"),
lastUpdated: DS.attr("string")});
App.ProfilesRoute = Ember.Route.extend({
model: function() {
return App.Profiles.find();
}});
但它簡化版,在所有的工作......我得到的錯誤:
Uncaught TypeError: Object function() { ... } has no method 'find'
請幫助...
可惜的是我得到的錯誤是這樣的:遺漏的類型錯誤:無法讀取未定義的屬性'typeKey' – Alucard140488