加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

ruby-on-rails-3 – Rails:加入多个条件

发布时间:2020-12-17 04:37:57 所属栏目:百科 来源:网络整理
导读:我有一个简单的模型 class Interest ActiveRecord::Base has_and_belongs_to_many :user_profilesendclass UserProfile ActiveRecord::Base has_and_belongs_to_many :interestsend 当我想查询具有特定兴趣的所有用户时,这很简单 UserProfile.joins(:interes
我有一个简单的模型
class Interest < ActiveRecord::Base
  has_and_belongs_to_many :user_profiles
end

class UserProfile < ActiveRecord::Base
  has_and_belongs_to_many :interests
end

当我想查询具有特定兴趣的所有用户时,这很简单

UserProfile.joins(:interests).where('interests.id = ?',an_interest)

但是,我如何找到有多种兴趣的用户?当然,如果我这样做

UserProfile.joins(:interests).where('interests.id = ?',an_interest).where('interests.id = ?',another_interest)

我总是得到一个空结果,因为在连接之后,没有行可以同时具有interest.id = an_interest和interest.id = another_interest.

ActiveRecord中有没有办法表达“我想要有2个(指定)兴趣的用户列表?

更新(解决方案)这是我提出的第一个工作版本,对Omar Qureshi赞不绝口

specified_interests.each_with_index do |i,idx|
      main_join_clause = "interests_#{idx}.user_profile_id = user_profiles.id"
      join_clause = sanitize_sql_array ["inner join interests_user_profiles interests_#{idx} on
                    (#{main_join_clause} and interests_#{idx}.interest_id = ?)",i]

      relation = relation.joins(join_clause)
    end

解决方法

in(?)并不好 – 它是一个OR表达式

您需要做的是将多个连接写出来

profiles = UserProfile
interest_ids.each_with_index do |i,idx|
  main_join_clause = "interests_#{idx}.user_profile_id = user_profiles.id"
  join_clause = sanitize_sql_array ["inner join interests interests_#{idx} on
                        (#{main_join_clause} and interests_#{idx}.id = ?)",i]
  profiles = profiles.join(join_clause)
end
profiles

您可能需要更改main_join_clause以满足您的需求.

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读