完整错误:
Uncaught Error: Assertion Failed: You may not set `id` as an attribute on your model. Please remove any lines that look like: `id: DS.attr('<type>')` from App.Plan
Ember模特:
App.Plan = DS.Model.extend({
id: DS.attr('number'),
name: DS.attr('string'),
period: DS.attr('number'),
price: DS.attr('number')
});
来自REST API的数据:
{"plans":[{"id":1,"name":"Monthly subscription","period":1,"price":2}]}
问题:如何解决上述错误?