我无法从 Active Record 中找到查询界面来仅显示至少具有一种产品的类别。怎么做?
类别.rb
class Category < ActiveRecord::Base
has_many :products
end
产品.rb
class Product < ActiveRecord::Base
belongs_to :category
end
谢谢你
我无法从 Active Record 中找到查询界面来仅显示至少具有一种产品的类别。怎么做?
类别.rb
class Category < ActiveRecord::Base
has_many :products
end
产品.rb
class Product < ActiveRecord::Base
belongs_to :category
end
谢谢你