在Rails 3.1中,当类别通过 :has_many, :through 关联时,如何找到具有指定类别的商店
在我的商店模型中,我有以下内容:
class Store < ActiveRecord::Base
has_many :categorizations
has_many :categories, :through => :categorizations
scope :by_categories, lambda{|category_ids|
where(*stores have the following* => category_ids) unless category_ids.empty?
}
我希望设置一个范围,可以向其发送多个或单个类别 ID,并让范围返回属于所有指定类别的商店。
谢谢您的关注。
In my Store model I have the following:
class Store < ActiveRecord::Base
has_many :categorizations
has_many :categories, :through => :categorizations
scope :by_categories, lambda{|category_ids|
where(*stores have the following* => category_ids) unless category_ids.empty?
}
I'm looking to setup a scope where I can send it multiple or a single category ID and have the scope return stores that belong to all the categories specified.
Thank you for looking.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)