目前仍在尝试使用 ember-model 和 hasMany 关系使用 FixtureAdapter 构建发票应用程序。当我尝试创建新的发票记录时,我得到一张没有错误的新发票,但根本没有 ID(它未定义),我应该在服务器端处理 id 创建吗?:/当我尝试在任何发票中创建新项目(发票有很多项目)时,调用保存时出现错误Èmber.Adapter must implement createRecord
感谢您的帮助,在这里找不到答案。
在 JSBIN 上重现问题的简化版本
索引.html
<script type="text/x-handlebars" data-template-name="factures">
{{#each}}
<ul>
<li>{{#link-to 'facture' this}}
{{#if id}}
#{{id}}:{{title}}
{{else}}
#undefined:{{title}}
{{/if}}
{{/link-to}}</li>
</ul>
{{/each}}
<button {{ action 'newInvoice' }}>New Invoice using create() then save()</button>
<hr/>
{{outlet}}
</script>
<script type="text/x-handlebars" data-template-name="facture">
<h2>Items for {{title}}</h2>
{{#each items}}
<ul>
<li>{{desc}}</li>
</ul>
{{/each}}
<button {{ action 'newItem' }}>New Item using create() then save()</button>
</script>
控制器处理动作
App.FactureController = Ember.ObjectController.extend({
actions: {
newItem: function(){
var items = this.get('model').get('items');
items.create({desc:"New Item"});
items.save();
}
}
});
App.FacturesController = Ember.ArrayController.extend({
actions: {
newInvoice: function(){
var facture = App.Facture.create({title:"New Invoice"}),
comment = facture.get('items').create({desc:"Sample Item"});
facture.save();
}
}
});