我正在使用rails_admin
gem并拥有此Post
模型
class Post < ActiveRecord::Base
# Association
has_many :post_categories
has_many :categories, through: :post_categories
has_many :post_tags
has_many :tags, through: :post_tags
# rails_admin configuration
rails_admin do
edit do
field :title
field :categories
field :tags
end
end
end
问题是“类别”字段按预期显示,但“标记”字段不是。
请告诉我可能有什么问题?
答案 0 :(得分:0)
我猜你错过了accepts_nested_attributes_for :tags
。