Rails里面有很多关系

时间:2016-12-11 20:52:11

标签: ruby-on-rails ruby-on-rails-4 where

class Product < ActiveRecord::Base
    has_and_belongs_to_many :product_categories

end

class ProductCategory < ActiveRecord::Base  
    has_and_belongs_to_many :products
end

我有一系列产品类别,我需要选择所有属于数组中某个类别的Proudcts

谢谢,Rotem

1 个答案:

答案 0 :(得分:0)

样品:

ProductCategory.first.products

将列出所有属于第一个产品类别的产品。