Rails 具有活动管理员的双重嵌套表单

Rails double nested form with active admin

我有如下联想:

变体 has_may 颜色和颜色 has_many 尺寸。我正在使用 active admin gem 来管理后端活动。我的模型看起来像,

class Variant < ApplicationRecord

  has_many :variant_colours, dependent: :destroy

  accepts_nested_attributes_for : variant_colours, allow_destroy: true
end

class VariantColor < ApplicationRecord
  belongs_to :variant

  has_many :variant_sizes, dependent: :destroy

  accepts_nested_attributes_for :variant_sizes, allow_destroy: true
end

class VariantSize < ApplicationRecord
  belongs_to :variant_color
end

它正在构建具有给定字段的 variant_colours 表单,但它不是在变体颜色下构建 variant_sizes 表单。建筑意味着它不填充表单上的字段(UI)

form do |f|
    f.inputs do
      f.input :name
      f.input :product
      f.input :sku
      f.input :stock_quantity
      f.inputs do
        f.has_many :variant_colors, heading: 'Variant Colors',
                                allow_destroy: true,
                                new_record: true do |color_form|
          color_form.input :color
          color_form.input :sku_code
          color_form.input :stock
          color_form.inputs do
            color_form.has_many :variant_sizes, heading: 'Variant Sizes',
                                    allow_destroy: true,
                                    new_record: true do |size_form|
              size_form.input :size
              size_form.input :sku_code
              size_form.input :stock
            end
          end
        end
      end
    end
    f.actions
  end

可能不需要用任何东西包裹 f.has_many,因此您可以尝试删除包裹 has_many 的嵌套 f.inputscolor_form.inputs 中的一个或两个在表单中输入块。

我的下一个想法是,您如何在控制器中声明允许的参数?他们可能需要遵循以下原则:

permit_params :name, :product, :sku, :stock_quantity, 
  variant_colors_attributes: [
    :color, :sku_code, :stock, :_destroy, 
    # I don't think I've ever tried to double nest in this way, you may need diff syntax
    variant_sizes_attributes: [:size, :sku_code, :stock, :_destroy]
  ]

我猜问题出在您允许的参数中。