我在我的轨迹3.2.3 应用程序中设置了一个嵌套形式, 运作良好,我的模型是:
class Recipe < ActiveRecord::Base
attr_accessible :title, :description, :excerpt, :date, :ingredient_lines_attributes
has_and_belongs_to_many :ingredient_lines
accepts_nested_attributes_for :ingredient_lines
end
并且:
class IngredientLine < ActiveRecord::Base
attr_accessible :ingredient_id, :measurement_unit_id, :quantity
has_and_belongs_to_many :recipes
belongs_to :measurement_unit
belongs_to :ingredient
end
如上所述,食谱可能有多个成分链,反之亦然。
我想避免的是 印地安林桌上的重复记录
例如,想象一下对于配方_ 1, 配方为 {“ 度量_ unit_ id” {gt; 1; “ 整数_ id” {gt; 1; “ 数量” {gt; 3.5} 相关联, 如果配方_ 5 配方为 IngredentLine 子窗体由具有相同值的用户编译, 我并不想在配方成分_ lines_ recipes 上有新记录, 但只想要在配方表格的成分_ lines_ recipes 上有新的关联记录 。
请注意,目前我没有任何 IngredientLine 控制器来保存和更新 IngredientLines 是由嵌套式常规操作的。 即使是我的食谱控制器也是简单和标准的 :
class RecipesController < ApplicationController
respond_to :html
def new
@recipe = Recipe.new
end
def create
@recipe = Recipe.new(params[:recipe])
flash[:notice] = Recipe saved. if @recipe.save
respond_with(@recipe)
end
def destroy
@recipe = Recipe.find(params[:id])
@recipe.destroy
respond_with(:recipes)
end
def edit
respond_with(@recipe = Recipe.find(params[:id]))
end
def update
@recipe = Recipe.find(params[:id])
flash[:notice] = Recipe updated. if @recipe.update_attributes(params[:recipe])
respond_with(@recipe)
end
end
我猜测这足以推翻 IngredientLine 的标准 create
行为 , 使用 find_ or_ create
, 但我不知道如何实现 。
但还有另外一个重要点需要小心, 想象一下在有些成分线存在的情况下, 儿童表格的编辑, 如果我加上另一个成分线, 已经存储在 IngredientLine 表格中, 铁路当然不应该在 IngredientLine 表格上写任何文字, 而是应该区分已经与父母相关联的儿童记录, 和需要建立关系的新儿童记录, 在合并表格上写下新记录 。
谢谢!