核心问题:如何在嵌套表单的批量分配过程中按键合并属性集合。
详细信息:我使用的是以下型号:
class Location < ActiveRecord::Base
has_many :containers,
:dependent => :destroy,
:order => "container_type ASC"
validates_associated :containers
accepts_nested_attributes_for :containers,
:allow_destroy => true,
:reject_if => proc {|attributes| attributes["container_count"].blank? }
end
class Container < ActiveRecord::Base
belongs_to :location, :touch => true
validates_presence_of :container_type
validates_uniqueness_of :container_type, :scope => :location_id
validates_numericality_of :container_count,
:greater_than => 0,
:only_integer => true
end
因此,每个位置只有一个容器类型存在约束。以下视图呈现位置和关联的容器:
系统管理员/容器/ _index.html.erb
<% remote_form_for [:admin, setup_containers(@location)] do |f| -%>
<% f.fields_for :containers do |container_form| -%>
<%= render "admin/containers/form", :object => container_form %>
<% end -%>
<%= f.submit "Speichern" %>
<% end -%>
系统管理员/容器/ _form.html.erb
<% div_for form.object do -%>
<span class="label">
<%- if form.object.new_record? -%>
<%= form.select :container_type, { "Type1" => 1, "Type2" => 2, ... } %>
<%- else -%>
<%= form.label :container_count, "#{form.object.name}-Container" %>
<%= form.hidden_field :container_type %>
<%- end -%>
</span>
<span class="count"><%= form.text_field :container_count %></span>
<%- unless form.object.new_record? -%>
<span class="option"><%= form.check_box :_destroy %> Löschen?</span>
<%- end -%>
<% end -%>
模块Admin :: ContainersHelper
def setup_containers(location)
return location if location.containers.any? {|l| l.new_record? }
returning location do |l|
all_container_types = [1, 2, ...]
used_container_types = l.containers.try(:collect, &:container_type) || []
next_container_type = (all_container_types - used_container_types).first
l.containers.build :container_type => next_container_type if next_container_type
end
end
基本上,帮助程序会向集合添加一个新容器,但所有类型已经关联,或者集合中已有一个新容器。此容器已初始化为第一个尚未定义的容器类型。到目前为止,这很好。添加容器有效。删除容器有效。
问题是:我想实现选择并添加已经在集合中的容器类型应该总结它们的计数(而不是它会违反唯一约束)。我不确定在没有实现/重新发明完整的accepts_nested_attributes_for
魔法的情况下最好的方法是什么 - 实际上我想通过使用它来减少 - 而不是增加 - 代码和复杂性。