4
我想在父對象的show視圖中顯示一個相關的has_many對象集合作爲表。has_many表中的rails_admin表?
目前has_many項目只是以逗號分隔的列表顯示。
如何顯示has_many項目作爲表格並指定要包含的列?
我想在父對象的show視圖中顯示一個相關的has_many對象集合作爲表。has_many表中的rails_admin表?
目前has_many項目只是以逗號分隔的列表顯示。
如何顯示has_many項目作爲表格並指定要包含的列?
例如第 has_many 作者。
那麼你應該只添加文章類:
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
我不明白爲什麼這是一個公認的答案。這不能解決OP問題。 – veritas1