gpt4 book ai didi

ruby-on-rails - 添加 Accepts_nested_attributes_for 时,Fields_for 消失

转载 作者:行者123 更新时间:2023-12-04 01:57:23 24 4
gpt4 key购买 nike

我在 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>

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

最佳答案

在 Controller 中新的 Action 调用

@product.varients.build

这应该在产品变量集合中的内存变量中创建 1 并且它应该绑定(bind)到字段

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

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com