我使用了很多通过关联,以便可以将文章“保存”到许多部分,并将该关系称为位置。在位置表中还有一个“默认”列(布尔值),这允许用户指出哪个部分是默认部分。
以下是模型:
class Article < ActiveRecord::Base
has_many :locations
has_many :sections, :through => :locations
def default_location
self.sections.where('locations.default = 1').first
end
end
class Location < ActiveRecord::Base
belongs_to :article
belongs_to :section
end
class Section < ActiveRecord::Base
has_many :locations
has_many :articles, :through => :locations
end
所以在我看来:
<%= form_for(@article) do |f| %>
...
<p class="field">
<h3>Locations</h3>
<ul>
<% @sections.each do |section| %>
<li><%= radio_button_tag ???, section.id, :checked => @article.default_location == section %> <%= check_box_tag 'article[section_ids][]', section.id, @article.section_ids.include?(section.id), :id => dom_id(section) %><%= label_tag dom_id(section), section.name %></li>
<% end %>
</ul>
</p>
...
<% end %>
到目前为止,我可以保存和更新位置,但我不确定如何为每个保存的位置分配默认字段。我为每个部分添加了一个单选按钮,因此用户可以选择默认设置,但我不确定如何将它们组合在一起。
任何想法都会非常感激!感谢。
答案 0 :(得分:1)
不确定为什么你需要一个单选按钮和复选框。尝试添加hidden_field_tag以及check_box_tag:
<p class="field">
<h3>Locations</h3>
<%= hidden_field_tag "article[section_ids][]", "" %>
<ul>
<% @sections.each do |section| %>
<li>
<%= check_box_tag :section_ids, section.id, @article.section_ids.include?(section.id), :id => dom_id(section), :name => 'article[section_ids][]' %>
<%= label_tag dom_id(section), section.name %>
</li>
<% end %>
</ul>
</p>