嵌套属性字段不会显示使用Reform gem

时间:2017-07-11 12:36:01

标签: ruby-on-rails ruby reform

我正在使用Reform gem在我当前项目中创建一个表单对象,但嵌套字段不会显示在表单中。这是我的代码:

货件型号:

class Shipment < ApplicationRecord
  has_one :shipment_detail
end

ShipmentDetail型号:

class ShipmentDetail < ApplicationRecord
  belongs_to :shipment
end

改革班

class ShipmentForm < Reform::Form
  property :shipment_type
  property :measure

  property :shipment_detail do
    property :po_number
    property :job_no
  end
end

控制器

class ShipmentsController < ApplicationController
  def new
    @shipment = ShipmentForm.new(Shipment.new)
  end
end

模板

<%= form_for @shipment, url: shipments_path, method: :post do |f| %>
  <%= f.label :shipment_type %><br />
  <%= f.text_field :shipment_type %><br /><br />

  <%= f.label :measure %><br />
  <%= f.text_field :measure %><br /><br />

  <%= f.fields_for :shipment_detail do |d| %>
    <%= d.label :po_number %><br />
    <%= d.text_field :po_number %><br /><br />

    <%= d.label :job_no %>
    <%= d.text_field :job_no %><br /><br />
  <% end %>
<% end %>

表单上只显示字段shipment_typemeasurepo_numberjob_no不是。我该怎么办才能让它们可见?

1 个答案:

答案 0 :(得分:2)

在改革中,您需要使用prepopulator创建一个新/空白:shipment_detail部分以显示在表单上。

http://trailblazer.to/gems/reform/prepopulator.html

  • 预填充器是指您想要在渲染之前填写字段(也就是默认值)或添加嵌套表单。
  • populators是在验证之前运行的代码。

以下是我在代码中使用的内容,您可以从中获取您的想法:

   collection :side_panels, form: SidePanelForm,
    prepopulator: ->(options) {
      if side_panels.count == 0
        self.side_panels << SidePanel.new(sales_order_id: sales_order_id, collection: sales_order.collection)
      end
    }
  • 必须手动调用预填充。

     Controller#new
    @shipment_form = ShipmentForm.new(Shipment.new)
    
    @shipment_form.shipment_detail #=> nil
    
    @shipment_form.prepopulate!
    
    @shipment_form.shipment_detail #=> <nested ShipmentDetailForm @model=<ShipmentDetail ..>>
    

RE:编辑表格

如果您在新操作中创建ShipmentForm并将详细信息部分留空,稍后您希望在编辑操作中显示这些字段,则还需要在该操作上再次运行预填充程序。就像新动作一样。

在我上面的代码中,如果当前没有,if side_panels.count == 0行将添加编辑表单中的缺失行。