ActiveAdminで二重にnestしたフォームを書く
3309 ワード
ActiveAdminでhas_oneのassociationに対するnestしたフォームを作る
に続き、ActiveAdminネタ。二重にネストしたフォームは普通にActiveAdminでも書けます。
親モデルParent、子モデルChild、孫モデルGrandChildが以下のように定義されているときに、
class Parent < ActiveRecord::Base
has_many :childs # childの複数形はchildrenだけど、無視
accepts_nested_attributes_for :childs, allow_destroy: true
end
class Child < ActiveRecord::Base
belongs_to :parent
has_many :grand_childs
accepts_nested_attributes_for :grand_childs, allow_destroy: true
end
class GlandChild < ActiveRecord::Base
belongs_to :child
end
二重にネストしたフォームは以下のように書けます。ただし、当然ながら、 accepts_nested_attributes_for
が正しく設定されていないと、内部的に呼ばれるnew_record?
のところでnilが起因するエラーが出ます。
/admin/models/parent.rb
ActiveAdmin.register Parent do
form do |f|
f.inputs "子モデルの編集"
f.has_many :childs do |child|
child.input :hoge
child.has_many :grand_childs do |grand_child|
grand_child.input :moge
end
end
end
end
end
Author And Source
この問題について(ActiveAdminで二重にnestしたフォームを書く), 我々は、より多くの情報をここで見つけました https://qiita.com/setoyama-precena/items/79624135cfbc04073169著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .