我正在尝试创建嵌套表单,它将为两个关联模型组合2个属性。
假设我有3种型号:配方(主要型号),RecipeIngredient(配方和配料的连接模型)和成分。
代码如下:
class Recipe < ApplicationRecord
has_many :directions, inverse_of: :recipe
has_many :recipe_ingredients, inverse_of: :recipe
has_many :ingredients, through: :recipe_ingredients
accepts_nested_attributes_for :ingredients,
reject_if: proc { |attributes| attributes['name'].blank? },
allow_destroy: true
accepts_nested_attributes_for :directions,
reject_if: proc { |attributes| attributes['step'].blank? },
allow_destroy: true
accepts_nested_attributes_for :recipe_ingredients,
reject_if: proc { |attributes| attributes['quantity'].blank? },
allow_destroy: true
validates :tittle, :description, :image, presence: true
has_attached_file :image, styles: { :medium => "400x400#" }
validates_attachment_content_type :image, content_type: /\Aimage\/.*\Z/
end
class Ingredient < ApplicationRecord
has_many :recipe_ingredient, inverse_of: :ingredient
has_many :recipes, through: :recipe_ingredient
end
class RecipeIngredient < ApplicationRecord
belongs_to :recipe
belongs_to :ingredient, inverse_of: :recipe_ingredient
end
我的筑巢:
.col-md-6
%h3 Skladniki
#ingredients
= f.simple_fields_for :recipe_ingredients do |recipe_ingredient|
=render 'recipe_ingredient_fields', f: recipe_ingredient
.links
= link_to_add_association 'Dodaj skladnik', f, :recipe_ingredients, class: "btn btn-default add-button", :wrap_object => Proc.new {|recipe_ingredient| recipe_ingredient.build_ingredient; recipe_ingredient }
在这里你可以看到我正在尝试访问两个属性: 1.数量(RecipeIngredient类) - 这部分还可以 2.名称(成分类) - 这部分完全是KO
.form-inline.clearfix
.nested-fields
= f.input :quantity, :label => "Ilość", input_html: { class: "form-input form-control" }
= f.fields_for :ingredients_attributes do |ingr|
= ingr.input :name, :label => "Nazwa", input_html: { class: "form-input form-control" }
= link_to_remove_association "Usun", f, class: "form-button btn btn-default"
验证期间我收到此错误
食谱成分必须存在
这就是为什么:
Parameters: {"utf8"=>"✓", "authenticity_token"=>"nw14a3HkgSrjE+QpIK4POEzTOqBhtE/EMe+CarWkmI6CSRf0GAdWZGzJQRD4aPurNDNm96TJbt60mc1hl+1JPA==", "recipe"=>{"tittle"=>"Tosty", "description"=>"Testowy przepis", "preparation_time"=>"10.0", "portion"=>"2", "recipe_ingredients_attributes"=>{"1507996685991"=>{"quantity"=>"432", "ingredients_attributes"=>{"name"=>"fasdd"}, "_destroy"=>"false"}, "1507996689888"=>{"quantity"=>"2134432342", "ingredients_attributes"=>{"name"=>"dsad"}, "_destroy"=>"false"}}, "directions_attributes"=>{"0"=>{"step"=>"Krok1", "_destroy"=>"false", "id"=>"1"}, "1"=>{"step"=>"Krok2", "_destroy"=>"false", "id"=>"2"}}}, "commit"=>"Update Recipe", "id"=>"5"}
Recipe Load (0.3ms) SELECT "recipes".* FROM "recipes" WHERE "recipes"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]]
Unpermitted parameter: ingredients_attributes
Unpermitted parameter: ingredients_attributes
(0.2ms) begin transaction
Direction Load (0.3ms) SELECT "directions".* FROM "directions" WHERE "directions"."recipe_id" = ? AND "directions"."id" IN (1, 2) [["recipe_id", 5]]
(0.2ms) rollback transaction
传递给方法的参数不匹配recipe_params的定义(recipe_controller中的私有方法):
def recipe_params
params.require(:recipe).permit(:tittle, :description, :image, :portion, :preparation_time, ingredients_attributes: [:id, :name, :_destroy], directions_attributes: [:id, :step, :_destroy], recipe_ingredients_attributes: [:id, :quantity, :_destroy])
end
重点是......如何修复它?所以ingredients_attributes将从recipe_ingredients_attributes中传递出来?
答案 0 :(得分:1)
日志文件中的错误表明不允许ingredients_attributes
参数。如果检查传递的参数,您可以看到recipe_ingredients_attributes
包含ingredients_attributes
,强参数定义(recipe_params
方法)不允许这样做:它必须支持正确的嵌套同样。
答案 1 :(得分:0)
感谢Nathan。
这里的答案可以在这里找到(cocoon git): https://github.com/nathanvda/cocoon/issues/461