0

一些 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 ...

4

1 回答 1

0

将此代码放入您的 ChildCatalog 模型中

def self.fullname
 self.parent_catelog.catelog.name + self.parent_catelog.name + self.name

end
于 2013-07-19T08:57:19.583 回答