1

我有 3 个模型:

class Image < ActiveRecord::Base
  attr_accessible :name, :size, :image

  has_many :taggings, :dependent => :destroy
  has_many :tags, :through => :taggings
end

class Tag < ActiveRecord::Base
  attr_accessible :name
  has_many :taggings, :dependent => :destroy
  has_many :images, :through => :taggings
end

class Tagging < ActiveRecord::Base
  belongs_to :image
  belongs_to :tag
  attr_accessible :image_id, :tag_id
end

现在我添加了一些带有对应(预定义)标签的图像,images/new 的相关代码是:

%div.field
  = f.label "Tag"
  %br/
  - for tag in Tag.all
    = check_box_tag "image[tag_ids][]", tag.id, @image.tags.include?(tag)  
    = tag.name

我现在如何搜索具有特定标签的所有图像?我需要一个@images 来显示所有带有一个或多个预定义标签的图像。我在复选框的帮助下选择这些标签:

%h1
  Search an image
%p
  = form_tag '/tagsearch', :method => 'get' do
    - for tag in Tag.all
      = check_box_tag 'tag_ids[]', tag.id
      = tag.name
    = submit_tag "Search Images"

所以,这个搜索的参数现在是(例如,搜索所有带有 tag_ids 2 和 3 的图像):

{"utf8"=>"✓",
 "tag_ids"=>["2", 
 "3"],
 "commit"=>"Search Images"}

执行这种图像搜索的最佳方法是什么?

4

1 回答 1

4

我认为这应该有效:

images = Image.includes(:tags).where('tags.id' => params['tag_ids']).all
于 2012-09-04T12:52:06.010 回答