一些 1 可以帮助我与 rails 应用程序中的关联。这是我的模型:
class Catalog < ActiveRecord::Base
attr_accessible :name
has_many :parent_catalogs
end
class ParentCatalog < ActiveRecord::Base
attr_accessible :catalog_id, :name
has_many :child_catalogs
belongs_to :catalog
end
class ChildCatalog < ActiveRecord::Base
attr_accessible :name, :parent_catalog_id
has_many :products
belongs_to :parent_catalog
end
class Product < ActiveRecord::Base
attr_accessible :child_catalog_id, :name
belongs_to :child_catalog
# Ex
rails_admin do
field :name
field :child_catalog do
# How ((
end
end
end
问题是:如何使 child_catalog 字段看起来像:产品编辑菜单中的 Catalog.name + ParentCatalog.name + ChildCatalog.name ...