作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在构建一个应用程序,该应用程序必须向多个雇主分配任务。
我已经建立了这些模型:
#assignment.rb
class Assignment < ActiveRecord::Base
has_many :employer_assignments
has_many :employers, :through => :employer_assignments
end
#employer.rb
class Employer < ActiveRecord::Base
has_many :employer_assignments
has_many :assignments, :through => :employer_assignments
end
#employer_assignment.rb
class EmployerAssignment < ActiveRecord::Base
belongs_to :employer
belongs_to :assignment
end
<div class="field">
<%= f.label :employer_ids %><br />
<%= collection_check_boxes(:assignment, :employer_ids, Employer.all, :id, :name) %>
</div>
最佳答案
您可能会收到 Unpermitted parameters:
由于 rails4 中的强参数(@emil-kampp 提到了这一点),在您的日志中,在生成新的 rails 后,它们会在您的 Controller 中生成。所以使用你的代码它看起来像:
class EmployersController < ApplicationController
# <snip>
def update
@employer.update(employer_params)
end
def employer_params
params.require(:employer).permit(:name, { :employer_ids => [] })
end
end
关于has-many-through - 导轨 4 : checkboxes with a has_many through,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16339869/
我是一名优秀的程序员,十分优秀!