0
我有3個表格Jobs,Countyies and Countyisation。Rails 4多對多關係
縣有:
has_many :countyizations
has_many :jobs, :through => :countyizations
Countyization有:
belongs_to :county
belongs_to :job
工作有:
has_many :countyizations
has_many :counties, :through => :countyizations
我使用simple_forms並在我的創建/編輯表單以下。
<%= f.association :counties, :as => :check_boxes, :collection => County.all.sort, :selected => @job.counties, :label => false %>
這並生成所有我在數據庫的縣複選框,我可以檢查他們,但是當我創建或編輯記錄「countyization」協會不走。我需要添加一些東西到我的作業控制器的「params.require」部分嗎?我一直在爲此工作好幾天,而且非常沮喪。任何幫助都非常感謝!