5

我想在父对象的显示视图中将一组相关的 has_many 对象显示为表格。

目前 has_many 项目仅显示为以逗号分隔的列表。

如何将 has_many 项目显示为表格并指定要包含的列?

4

1 回答 1

-3

例如文章has_many Autors

然后你应该在Article类中添加:

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

于 2013-05-31T23:37:58.213 回答