Rails:查找与任何关联对象匹配条件的所有记录

时间:2016-06-22 15:04:06

标签: mysql sql ruby-on-rails ruby activerecord

我有以下Ruby on Rails实体:

播放列表:

class Playlist < ActiveRecord::Base {
                             :id => :integer,
                           :name => :string,
                     :created_at => :datetime,
                     :updated_at => :datetime,
                      :dimension => :string,
                          :title => :string,
                           :text => :string,
                          :price => :float,
       :playlist_image_file_name => :string,
    :playlist_image_content_type => :string,
       :playlist_image_file_size => :integer,
      :playlist_image_updated_at => :datetime,
                           :main => :boolean,
                         :action => :string,
                 :hairdresser_id => :integer
}

关键字:

class Keyword < ActiveRecord::Base {
             :id => :integer,
           :name => :string,
     :created_at => :datetime,
     :updated_at => :datetime,
    :preselected => :boolean
}

它们之间的关系非常简单:基本上,播放列表对象可以关联0个或更多关键字。 这些是模型:

class Keyword < ActiveRecord::Base
  has_and_belongs_to_many :playlists
end

class Playlist < ActiveRecord::Base
  has_and_belongs_to_many :keywords

  has_attached_file :playlist_image, styles: {medium: "500x500", small: "200x200", thumb: "40x40"}, default_url: "/system/playlist_default.jpg"
  validates_attachment_content_type :playlist_image, content_type: /\Aimage\/.*\Z/
end

这让我可以这样做:

Playlist.first.keywords

并检索与第一个播放列表关联的所有关键字。

现在我想构建一个函数来返回所有具有某些单词作为关键字并且“main”等于true的播放列表。 例如,所有具有关键字“夏天”的播放列表。 我尝试过这个:

Playlist.where(:main => true).map{|x| x.keywords.include? "Summer"}

但是只返回一个包含true或false的数组,具体取决于相关的播放列表是否包含关键字“Summer”,我正在寻找只有当该播放列表的关键字数组包含该单词时才返回整个播放列表的内容“夏季”。我怎样才能做到这一点?

2 个答案:

答案 0 :(得分:2)

这样的事情应该有效,使用includes

Playlist.includes(:keywords)
        .where(playlists: {main: true}, keywords: {name: 'Summer'})

答案 1 :(得分:0)

您应该创建范围以提高可重用性。

class Playlist < ActiveRecord::Base
  has_and_belongs_to_many :keywords

  scope :main, -> { where(main: true) }
  scope :with_key_words, -> (key_words) { joins(:keywords).where(keywords: {name: key_words}) }
end

要让所有播放列表满足您的要求,只需:

Playlist.main.with_key_words(['Summer'])