Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以完全禁用特定模型关联的使用rails_admin?
rails_admin
我有一个包含数千个关联对象的模型,似乎在 rails admin 中让它们可见/启用会导致数据库阻塞。
config.model 'ParentModel' do configure :my_association do hide # for list view filterable false searchable false end # rest of your ParentModel configuration end
那应该这样做。
或者,如果您排除关联模型 ( config.excluded),关联也不会显示。
config.excluded