35

我无法通过使用 Rails 4 的强大参数来获得 has_many :through 关联。我有一个名为的模型Checkout,我需要Employee在新的结帐表单中从模型中选择一个人。结账和员工通过Employment模型关联。

尝试创建新结帐时出现此错误:

NoMethodError in CheckoutsController#create
undefined method `employee' for #<Checkout:0x007ff4f8d07f88>

我的创建操作、结帐参数或新结帐表单似乎有问题。这是创建操作:

  def create    
    @user = current_user
    @checkout = @user.checkouts.build(checkout_params)

    respond_to do |format|
      if @checkout.save
        format.html { redirect_to @checkout, notice: 'Checkout was successfully created.' }
      else
        format.html { render action: 'new' }
      end
    end
  end

我的结帐参数:

def checkout_params
      params.require(:checkout).permit(:job, :employee_ids, :shift, :date, :hours, :sales, :tips, :owed, :collected, :notes)
end

我的新结帐表格:

<div class="field">
     <%= f.label :employee %><br>
     <%= f.collection_select(:employee_ids, Employee.all.collect, :id, :full_name, {:prompt => "Please select"} ) %>
</div>

但我无法弄清楚 Rails 4 和强大的参数发生了什么变化。在 Rails 3 中,这种类型的关联和表单使用 attr_accessible 而不是 strong_parameters 对我有用。

相关文件

错误的完整跟踪: https ://gist.github.com/leemcalilly/0cb9e2b539f9e1925a3d

模型 /checkout.rb:https://gist.github.com/leemcalilly/012d6eae6b207beb147a

控制器 /checkouts_controller.rb:https://gist.github.com/leemcalilly/a47466504b7783b31773

意见/结帐/_form.html.erb https://gist.github.com/leemcalilly/ce0b4049b23e3d431f55

模型 /employee.rb:https://gist.github.com/leemcalilly/46150bee3e6216fa29d1

控制器 /employees_controller.rb:https://gist.github.com/leemcalilly/04f3acdac0c9a678bca8

模型 /employment.rb:https://gist.github.com/leemcalilly/6adad966dd48cb9d1b39

db/schema.rb: https ://gist.github.com/leemcalilly/36be318c677bad75b211

4

3 回答 3

55

请记住,您为强参数(employees、employee_ids 等)提供的名称在很大程度上是无关紧要的,因为它取决于选择提交的名称。基于命名约定,强参数没有“魔法”。

https://gist.github.com/leemcalilly/a71981da605187d46d96在“employee_ids”上引发“Unpermitted parameter”错误的原因是因为它需要一个标量值数组,每个https://github.com/rails/strong_parameters #nested-parameters,而不仅仅是一个标量值。

# If instead of:
... "employee_ids" => "1" ...
# You had:
... "employee_ids" => ["1"]

然后,您的强大参数将起作用,特别是:

... { :employee_ids => [] } ...

因为它正在接收一个标量值数组,而不仅仅是一个标量值。

于 2013-07-08T17:43:01.427 回答
4

好的,所以我实际上不需要嵌套参数。这最终为我工作:

# Never trust parameters from the scary internet, only allow the white list through.
def checkout_params
  params.require(:checkout).permit(:job, :shift, :employee_ids, :date, :hours, :sales, :tips, :owed, :collected, :notes)
end

这是有效的更改组合。

仍然不太明白为什么这会奏效。

于 2013-07-08T19:13:44.943 回答
0

我可以发布我在其中一个控制器中使用的许可声明。这也有一个多对多的关联。您嵌套了 permit 数组。在您的许可声明中使用查找关联。唯一的区别应该是你的不会嵌套第三次。

就我而言,关联 Quote has_many :quote_items

报价单has_many :quote_options, :through => quote_item_quote_options

在quotes_controller.rb

params.require(:quote).permit(:quote_date, :good_through, :quote_number, quote_items_attributes: [:id,:quote_id, :item_name, :material_id, quote_item_quote_options_attributes:[:quote_option_id,:quote_item_id,:qty,:_destroy,:id]])
于 2013-07-05T02:36:07.767 回答