5

目前,一个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 %>
4

2 回答 2

7

您应该预先填充@item.item_variants一些数据:

def new # in the ItemController
  ...
  @item = Item.new
  3.times { @item.item_variants.build }
  ...
end

来源:http ://rubysource.com/complex-rails-forms-with-nested-attributes/

于 2012-10-20T12:22:04.660 回答
2

试试这个方法

在你item controller new action 写的

def new
  ...
    @item = # define item here
    @item.item_variants.build if @item.item_variants.nil?
  ...
end

并且在item/new.html.erb

<%= form_for @item do |f| %>
  ...
  ...
  <%= f.fields_for :item_variants do |builder| %>
    ...
  <% end %>
  ...
  ...
<% end %>

有关更多信息,请参阅视频 -嵌套模型表单

于 2012-10-20T12:20:43.320 回答