0

有两个表:用户和行业。用户可以涉及多个行业,很多用户属于一个行业。

工业.rb

class Industry <ApplicationRecord
    has_many: users,: through =>: industry_users
    has_many: industry_users
end

用户.rb

class User <ApplicationRecord

  belongs_to: specialty
  has_many: industries,: through =>: industry_users
  has_many: industry_users

  scope: by_specialty, -> specialty {where (: specialty_id => specialty)}
  scope: by_period, -> started_at, ended_at {where ("graduation_date> =? AND graduation_date <=?", started_at, ended_at)}
end

行业用户.rb

它们之间的关系是many_to_many。第三个表 IndustryUser 存储两列。

class IndustryUser <ApplicationRecord
    belongs_to: user
    belongs_to: industry
end

现在我正在开发一个 API。我使用 has_scope gem 通过获取请求中的参数过滤用户。以上,我成功过滤了他们的专业和毕业日期。例如,过滤专业。

http://localhost:3000/v1/users?by_specialty=1

按毕业日期筛选。你应该提供一段时间。

http://localhost:3000/v1/users?
by_period[started_at]=20040101&by_period[ended_at]=20070101

当我想获得属于特定行业的用户时,我陷入了困境。这是获取查询的示例

http://localhost:3000/v1/users?by_industry=2

例如。在这里,我希望它呈现所有与第二行业相关的用户。有谁知道如何使用 has_scope 过滤与多对多关系相关的对象?

4

1 回答 1

2

认为这将是这样的:

scope: by_industry, -> industry {User.joins(:industry_users).where(industry_users: {id: IndustryUser.where(industry: Industry.where(id: industry))})}

此位找到正确的行业:

Industry.where(id: industry)

此位查找IndustryUser引用刚刚找到的记录Industry

IndustryUser.where(industry: Industry.where(id: industry))

然后你加入industry_usersfind 以查找Users 引用的 s industry_users

User.joins(:industry_users).where(industry_users: {id: IndustryUser.where(industry: Industry.where(id: industry))})
于 2017-11-13T18:37:11.557 回答