0

目前仍在尝试使用 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();
      }
    }
});
4

1 回答 1

1

是的,通常客户端不知道下一个 id 应该是什么,所以当你创建一个模型并保存它时,服务器应该返回一个 id 来更新模型。如果您愿意,您可以随机生成一个,但这可能不是现实生活中的场景(除非模型只存在于客户端)

您面临的问题是当您尝试保存和项目时它不知道如何。您需要为 Item 模型定义一个适配器,以便它知道在哪里/如何保存该模型类型。

http://emberjs.jsbin.com/eKibapI/7/edit

于 2013-11-23T14:59:07.327 回答