我正在Rails 3.2.5中做一个嵌套表单,但是当我添加accepts_nested_attributes_for时,我的fields_for消失了(它们只是停止在表单中显示)。
这是我的模型:

class Product < ActiveRecord::Base
    attr_accessible :title, :description, :variants_attributes

    has_many :variants
    accepts_nested_attributes_for :variants

    validates :title, presence: true
end

我的第二个模特是
class Variant < ActiveRecord::Base
    belongs_to :product
    attr_accessible :price, :sku, :weight, :inventory_quantity, :product_id
end

在我看来,我有
<%= form_for [:admin, @product], :html => {:multipart => true} do |f| %>

 <%= render 'admin/shared/error_messages', object: f.object %>

 <fieldset>
  <legend>Producto Nuevo</legend>
    <div class="control-group">
      <%= f.label :title, 'Título', class: 'control-label' %>
      <div class="controls">
        <%= f.text_field :title %>
      </div>
   </div>

    **<%= f.fields_for :variants do |variant| %>
     <%= render 'inventory_fields', f: variant %>
    <% end %>**

  <div class="actions">
    <%= f.submit 'Guardar', class: 'btn btn-primary' %>
  </div>
<% end %>

_inventory_fields.html.erb
<div class="control-group">
  <%= f.label :inventory_quantity, 'How many are in stock?', class: 'control-label' %>
  <div class="controls">
    <%= f.text_field :inventory_quantity, class: 'span1', value: '1' %>
  </div>
</div>

**之间的部分是未打印的部分。当我在我的产品模型中删除了accepts_nested_attributes_for时,fields_for开始再次显示,但我的表单无法正常工作。
发生了什么?!?!

最佳答案

在 Controller 中,新 Action 调用

@product.varients.build
那应该在产品变量集合中在内存变量中创建1,并且应该绑定(bind)到以下字段:

关于ruby-on-rails - 添加accepts_nested_attributes_for时,fields_for消失,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11769592/

10-10 10:42