我不确定为什么我的 has_many through 复选框没有保存。这是一个相当复杂的表格(语言暑期课程的在线申请),所以除了常规的申请人信息外,我还使用 fields_for 收集 LanguageBackgroundAndInterest 模型的属性。这些属性的一部分是申请人用来学习语言的书籍。代码如下所示:
<%= f.fields_for :language_background_and_interest do |builder| %>
<div class="field">
<%= hidden_field_tag "language_background_and_interest[book_ids][]" %>
<% Book.all.each do |book| %>
<br><%= check_box_tag "language_background_and_interest[book_ids][]", book.id %>
<%= book.name.humanize %>
<% end %>
</div>
<% end %>
language_background_and_interest 和书籍都使用 has_many_through 连接在一起,如下所示:
class LanguageBackgroundAndInterest < ActiveRecord::Base
attr_accessible :book_ids
has_many :language_background_books
has_many :books, through: :language_background_books
end
class Book < ActiveRecord::Base
attr_accessible :name, :publisher
has_many :language_background_books
has_many :language_background_and_interests, through: :language_background_books
end
# Join Table
class LanguageBackgroundBook < ActiveRecord::Base
attr_accessible :language_background_and_interest_id, :book_id
belongs_to :language_background_and_interest
belongs_to :book
end
我不确定为什么复选框中的书籍没有分配给适当的背景模型。有任何想法吗?
PS:诚然,这个设计有点模棱两可(为什么不让书属于申请人?),但我目前想建立一个原型,我也受到一个可疑要求的限制。所以我需要这个工作。