ActiveAdmin.register Post do
# ...
form do |f|
f.inputs do
f.input :title
f.input :body
f.input :category, as: :select, collection: Category.all
end
f.actions
end
end
class Post < ActiveRecord::Base
belongs_to :category
end
class Category < ActiveRecord::Base
has_many :posts
end
总之,我们可以通过使用form_for和f.input方法在对象创建时添加关联关系。