我想在父对象的show视图中显示一个相关的has_many对象集作为表。
目前,has_many项目仅显示为以逗号分隔的列表。
如何将has_many项目显示为表格并指定要包含的列?
答案 0 :(得分:-3)
例如文章 has_many Autors 。
然后你应该添加文章类:
accepts_nested_attributes_for :autors, allow_destroy: true
attr_accessible :autors_attributes
更多信息https://github.com/sferik/rails_admin/wiki/Has-and-belongs-to-many-association