Rails嵌套表单选择字段默认值

时间:2015-10-23 17:44:17

标签: ruby-on-rails ruby-on-rails-4 cocoon-gem

我在Rails 4中的嵌套表单的选择字段中显示存储的值时遇到问题。我可以使用嵌套表单创建记录而没有问题,但是当我使用相同的表单编辑记录时,存储的详细信息数据库未显示在选择框中。

我可以使用下面的语法在主窗体中显示值,我只是不知道如何以嵌套的形式引用值。

这适用于主要形式:

<%= f.select :customer_id, options_for_select(Customer.all.collect {|c| [ c.name, c.id ] }, @estimate.customer_id), {}, { :class => 'form-control'} %>

以下是我视图的相关嵌套部分。

<%= form_for @estimate, html: { class: "form-horizontal form-label-left" } do |f| %>
    ...
    <%= f.fields_for :estimate_details do |ff| %>
        <tr class="details_row nested-fields">
        <td><%= ff.select :area_id, options_for_select(Area.all.collect {|c| [ c.area_name, c.id ] }), {include_blank: true}, { :class => 'form-control'} %></td>
        <td><%= ff.select :product_id, options_for_select(Product.select(:product_number, :id).where(:active => 't').map {|c| [ c.product_number, c.id ] }), {include_blank: true}, { :class => 'form-control'} %></td>
        <td><%= ff.number_field :quantity, class: 'form-control', "min" => 1 %></td>
        <td><%= ff.select :accessory_id, options_for_select(Product.select(:product_number, :id).where(:accessory => 't', :active => 't').map {|c| [ c.product_number, c.id ] }), {include_blank: true}, { :class => 'form-control'} %></td>
        <td><%= ff.text_field :notes, class: 'form-control' %></td>
        <td><%= link_to_remove_association '<i class="fa fa-trash"></i>'.html_safe, f %></td>
        </tr>
    <% end %>
<% end %>

我尝试过使用ff.area_id和其他一些变体,但我得到了一个未定义的方法......&#34;我尝试的每一个都出错。

我使用Rails 4.2.4和Cocoon gem进行动态嵌套。

2 个答案:

答案 0 :(得分:2)

您可以获取子表单的对象并使用它:

ff.object.area_id

答案 1 :(得分:0)

<td>
  <%= ff.select :area_id, options_for_select(Area.all.collect {|c| [ c.area_name, c.id ], ff.object.area_id }), {include_blank: true}, { :class => 'form-control'} %>
</td>