0

我想在子记录中设置 parent_id。

我的模型是食谱(id,标题)和成分(id,about,recipe_id)。

我有一个表格,可以在其中创建包含许多成分的食谱。一切正常,但我不知道如何在创建父记录后在子记录中设置 parent_id。

例子:

我们创建食谱(id = 1,title = 'Title01')。所以我们所有的成分都会有字段recipe_id 1(id=2,about='这是成分',recipe_id=1)

recipe.js.coffee

App.Recipe = DS.Model.extend
  title: DS.attr('string')
  ingredients: DS.hasMany('App.Ingredient')

成分.js.coffee

App.Ingredient = DS.Model.extend
  about: DS.attr('string')
  recipe: DS.belongsTo('App.Recipe')

new.emblem(在这里我创建父配方和子成分)

h1 Create recipe

form
  div
    label{bindAttr for='title.elementId'} Title
    Ember.TextField valueBinding='title' name='title' viewName='title'

  div
    label{bindAttr for='about.elementId'} About
    Ember.TextArea valueBinding='about' name='about' viewName='about'

  #ingredients
    h3 Ingredients
    each ingredient in content.ingredients itemViewClass='App.ItemView'
      h3= this.view.rebasedIndex
      .control-group
        .controls
          Ember.TextField valueBinding='ingredient.about'
          a{ action removeIngredient ingredient target='controller' } href='#' Remove
    div
      a{ action addIngredient target='controller' } href='#' Add Ingredient

  button.btn.btn-success{ action save this } Create
  button.btn.btn-inverse{ action cancel this } Cancel
4

1 回答 1

0

我不知道咖啡脚本,但你可以为每个成分视图创建一个 parentIdBinding 吗?

编辑提供一个例子:

{{#each recipe in recipes}}
    {{#each ingredient in ingredients}}
        {{view ingredientView parentBinding="recipe"}}
    {{/each}}
{{/each}}
于 2013-04-25T17:38:24.673 回答