目前,一个Item 属于一个Company并且has_many ItemVariants。
我正在尝试使用嵌套的 fields_for 通过 Item 表单添加 ItemVariant 字段,但是使用 :item_variants 不会显示该表单。它仅在我使用单数时显示。
我检查了我的关联,它们似乎是正确的,这可能与嵌套在公司下的项目有关,还是我错过了其他东西?
提前致谢。
注意:下面的片段中省略了不相关的代码。
编辑:不知道这是否相关,但我使用 CanCan 进行身份验证。
路线.rb
resources :companies do
resources :items
end
项目.rb
class Item < ActiveRecord::Base
attr_accessible :name, :sku, :item_type, :comments, :item_variants_attributes
# Associations
#-----------------------------------------------------------------------
belongs_to :company
belongs_to :item_type
has_many :item_variants
accepts_nested_attributes_for :item_variants, allow_destroy: true
end
item_variant.rb
class ItemVariant < ActiveRecord::Base
attr_accessible :item_id, :location_id
# Associations
#-----------------------------------------------------------------------
belongs_to :item
end
项目/new.html.erb
<%= form_for [@company, @item] do |f| %>
...
...
<%= f.fields_for :item_variants do |builder| %>
<fieldset>
<%= builder.label :location_id %>
<%= builder.collection_select :location_id, @company.locations.order(:name), :id, :name, :include_blank => true %>
</fieldset>
<% end %>
...
...
<% end %>