0

我目前有这个:

class Item < ActiveRecord::Base
  has_many :item_tags, :dependent => :delete_all
  has_many :tags, :through => :item_tags, :order => 'name ASC'

  scope :asc, order('filename ASC')
end

class Tag < ActiveRecord::Base
  has_many :item_tags, :dependent => :delete_all
  has_many :items, :through => :item_tags

  scope :asc, order('name ASC')

  validates_presence_of :name
  validates_uniqueness_of :name
end

class ItemTag < ActiveRecord::Base
  belongs_to :item
  belongs_to :tag

  scope :asc, order('position ASC')
end

我可以通过以下标签轻松地进行包容性过滤:

@items = Item.asc
@items = @items.joins(:item_tags).where('item_tags.tag_id' => params[:tags]) if params[:tags]
# params[:tags] contains a string of comma separated tags IDs like: "13,14,15"

但结果(当然)包括标签为 13、14 或 15 的所有项目。

如何构建仅返回具有标签 13 AND 14 AND 15 的项目的查询?

例如。如果我按“椅子”和“现代”标签过滤,我不想要所有椅子物品和所有现代物品。我只想要所有现代椅子物品。

4

1 回答 1

0

答案就在这里:查找与所有类别匹配的产品(Rails 3.1)

我需要这样做:

tags = params[:tags].split(',')
Item.joins(:tags).where(:tags => {:id => tags}).group('items.id').having("count(item_tags.tag_id) = #{tags.count}")
于 2013-02-12T20:14:53.543 回答