【发布时间】:2011-08-16 14:12:17
【问题描述】:
我正在尝试创建一个嵌套表单来处理 has_many :through 关系并获取正在呈现的重复字段。
模型
公司
has_many :provides
has_many :services, :through => :provides
accepts_nested_attributes_for :services, :provides
attr_accessible :service_ids
提供
belongs_to :company
belongs_to :service
服务
has_many :provides
has_many :companies, :through => :provides
has_many :portfolio_items
acts_as_nested_set
控制器
设置/服务
def index
@company_services = @company.services
@service_list = Service.where("parent_id IS NULL")
end
def show
@user = current_user
# Find features for supplier based users
unless @company.blank?
@my_sectors = @company.sectors
end
end
def update
if params[:company].nil?
@company.service_ids = nil
end
respond_to do |format|
if @company.update_attributes(params[:company])
format.html { redirect_to settings_path, :notice => "Services successfully updated" }
else
format.html { render :index }
end
end
end
观看次数
表格 -
<%= form_for @company, :url => settings_service_path(@company), :method => :put do |f| %>
<div>
<ul>
<% @service_list.each do |item| %>
<%= f.fields_for :provides do |p| %>
<%= p.fields_for :services do |s| %>
<%= render :partial => "subs", :locals => {:subs => s, :service => item, :f => f, :p => p } %>
<% end %>
<% end %>
<% end %>
</ul>
<%= submit_tag("Update") %>
<% end %>
_subs.html.erb
<li>
<%= check_box_tag :service_ids, service.id, @company.services.include?(service), :name => "company[service_ids][]", :class => "checkbox" %>
<%= label_tag service.id, service.service_name %>
<% unless service.children.blank? %>
<ul>
<%= render :partial => "subs", :collection => service.children %>
</ul>
<% end %>
</li>
我知道 fields_for 导致了重复,但我不知道为什么?
谁能解释一下?
【问题讨论】:
-
这很奇怪,如果我保存3条记录,每行重复3次。
-
好的,在将 fields_for 移到每个循环之外之后,我就更清楚了。 fields_for 也在循环现有的关系。这对我不起作用,因为无论是否选中,我都需要显示所有服务复选框
标签: ruby-on-rails nested-forms duplication fields-for