在我的模特中,我有这个
class User< ApplicationRecord
has_many :participations
has_many :events, :through => :participations
end
class Event < ApplicationRecord
has_many :participations
has_many :users, :through => :participations
end
class Participation < ApplicationRecord
belongs_to :user
belongs_to :event
end
我想为event#show创建一个表,其中包含与该事件及其参与状态相关的用户。
在事件视图中,我有这个
<% @event.users.each do |user| %>
<% p = Participation.find_by user_id: user.id, event_id: @event.id %>
........
.......
但是,这将导致n + 1个查询。如何为@event预加载用户和参与以消除他们?
我尝试过
<% @event.users.includes(:participations).each do |user| %>
但它不能完成工作.....
答案 0 :(得分:1)
在您的event_controller中,您可以在下面进行搜索
@event = Event.includes(participations: :user).find(params[:id])
答案 1 :(得分:0)
您可以先将用户和事件包括在参与中,然后再对他们进行迭代以获取每个参与记录的事件和用户,而不是先获取所有用户并对其进行迭代来获取其参与的事件,然后再进行迭代:
Participation.includes(:user, :event).where(event_id: @event.id).each do |participation|
puts participation.user.id
puts participation.status
puts participation.event.id
end
答案 2 :(得分:0)
我找到了解决方案。在事件视图中,我这样做
<% @event.participations.includes(:user).each do |participation| %>
<% user = participation.user%>