我遍布谷歌,Rails_Admin dox等,但无法找到答案。
我有一个模特经纪公司:
class Agency < ActiveRecord::Base
has_and_belongs_to_many :kids
小孩模特:
class Kid < ActiveRecord::Base
has_and_belongs_to_many :agencies
attr_accessible :agency_ids
在Rails_Admin中,我使用以下代码访问代理商:
config.model Kid do
edit do
field :agencies
end
end
然而,对于我的生活,我无法弄清楚如何在不同的领域与同一模型建立联系。类似的东西:
config.model Kid do
edit do
field :agencies
field :agencies_previous
end
end
其中agencies_previous和代理机构将引用相同的代理商模型。