我有如下关联:位置类
class Location < ActiveRecord::Base
has_many :items
end
物品类别
class Item < ActiveRecord::Base
belongs_to :location
belongs_to :category
end
类别类
class category < ActiveRecord::Base
has_many :items
end
现在我想查询 Location.categories (显示所有类别的位置项目)。我怎样才能做到这一点?