我有一个rails应用程序。我想仅在配置文件存在时显示用户(用户has_one配置文件)。根据我的最佳知识,因为我在index.html.erb中有一组,我不能简单地使用<%if user.profile%>,所以我想在控制器中过滤它。
如何更改查询以仅从具有配置文件的数据库中获取那些用户?
一般来说,检查嵌套资源是否存在的最佳方法是什么?在带有查询的控制器中执行它还是只在视图中执行它?
用户/ controller.rb
def index
@q_users = User.ransack(params[:q])
@users = @q_users.result(distinct: true).includes(:profile).paginate(page: params[:page], per_page: 12)
end
index.html.erb
<div class="user-profile-index" style="padding-right:20px;padding-left:20px;">
<% @users.each_slice(3) do |users_for_row| %>
<div class="row">
<%= render :partial => "user", :collection => users_for_row, as: :user %>
</div>
<% end %>
</div>
_user.html.erb
<div class="col-md-4">
<%= link_to user do %>
<div class="panel panel-info">
<div class="panel-heading">
</div>
<div class="panel-body">
<% if user.profile %>
<% if user.profile.avatar %>
<%= image_tag user.profile.avatar.url(:base_thumb), class: "avatar" %>
<% end %>
<h4><%= user.profile.first_name %> <%= user.profile.last_name %></h4>
<h5><%= user.profile.company %></h5>
<% end %>
<h5><%= user.email %></h5>
</div>
</div>
<% end %>
</div>
user.rb
has_one :profile, dependent: :destroy
profile.rb
belongs_to :user
答案 0 :(得分:2)
将includes(:profile)
替换为:
joins(:profile).preload(:profile)
joins
将为您提供INNER JOIN,它将仅选择具有配置文件的用户。 preload
将预加载joins
中找到的配置文件(以避免N + 1问题)。
您还可以将此连接移动到用户模型中的单独范围,例如with_profile
。