我无法通过使用 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