预先检查Rails ActiveAdmin中的多个复选框

时间:2019-03-15 13:54:53

标签: ruby-on-rails activeadmin formtastic

在创建新对象时,我需要在ActiveAdmin中为表单中的habtm模型预先选中多个复选框。从第三方模型数据库记录中的数组获取的嵌套模型ID的数组。我当前的配置:

ActiveAdmin.register Hotel do
  permit_params page_ids:[]
  ...
  form do |f|
    ...
    f.inputs 'Pages' do
      f.input :pages, as: :check_boxes, collection: Page.order('position asc')
    end
    f.actions
  end
end

class Hotel < ApplicationRecord
  has_and_belongs_to_many :pages
  accepts_nested_attributes_for :pages
  ...
end

class Page < ApplicationRecord
  has_and_belongs_to_many :hotels
  ...
end

具有应预先检查的页面ID的数组:

Setting.find_by_name("defined_pages_ids").value.split(',').map(&:to_i) # [1,2,3,4]

实施预检查需要什么解决方案?

1 个答案:

答案 0 :(得分:0)

您需要重写创建酒店模型的新实例,并预先填充所需数据

  controller do

    def new
      @hotel = Hotel.new
      @hotel.pages << Page.all
    end

end