我有这些模型:
class Company < ActiveRecord::Base
has_many :categorizings, as: :categorizable
has_many :categories, :through => :categorizings
class Categorizing < ActiveRecord::Base
belongs_to :category
belongs_to :categorizable, polymorphic: true
class Category < ActiveRecord::Base
has_many :categorizings
has_many :categorizables, through: :categorizings
我怎样才能让所有公司都有一个特定的类别?
我试过了
Category.find_by_name("fff").companies
加上许多其他解决方案,但无法使其正常工作
谢谢!