Ember Data 对 JSON 响应很挑剔。我的服务器响应中有一些“不规则键”,根据指南,我可以将它们映射到适配器上。
http://emberjs.com/guides/models/the-rest-adapter/#toc_underscored-attribute-names
但是,Ember 说:Type Error: Object has no method 'map'
如何将键映射到模型?
我正在使用 Ember v1.0.0 和 Ember Data v1.0.0-beta.1
App.ApplicationAdapter = DS.RESTAdapter.extend({
namespace: 'api',
host: 'http://localhost:8080'
});
App.Customer = DS.Model.extend({
name: DS.attr('string')
});
App.CustomersRoute = Ember.Route.extend({
model: function () {
var store = this.get('store');
return store.findAll('customer');
}
});
App.ApplicationAdapter.map('App.Customer', {
name: { key: 'Name' }
});
更新:
查看 Ember Data 文档,似乎我可以像这样将地图功能添加到适配器:
DS.Adapter.reopenClass({
map: DS._Mappable.generateMapFunctionFor('attributes', function(key, newValue, map) {
var existingValue = map.get(key);
for (var prop in newValue) {
if (!newValue.hasOwnProperty(prop)) { continue; }
existingValue[prop] = newValue[prop];
}
})
});
我试过这个,但地图似乎没有工作。没有更多错误,但映射的属性为空。为什么?