gpt4 book ai didi

ruby-on-rails - rails4 采摘顺序和限制

转载 作者:行者123 更新时间:2023-12-04 05:51:05 25 4
gpt4 key购买 nike

在我的侧边栏中,我显示了新创建的用户配置文件。配置文件 belongs_to 用户和用户 has_one_profile。我意识到我只使用配置文件表中的 3 列,所以使用 pluck 会更好。我在部分中也有一个 link_to user_path(profile.user),所以我必须以某种方式告诉用户是谁。目前我正在使用 includes,但我不需要整个用户表。所以我使用了来自用户和配置文件表的许多列。

如何使用 pluck 优化它?我尝试了几个版本,但总是出现一些错误(大多数时候 profile.user 未定义)。

我当前的代码:

def set_sidebar_users
@profiles_sidebar = Profile.order(created_at: :desc).includes(:user).limit(3) if user_signed_in?
end

create_table "profiles", force: :cascade do |t|
t.integer "user_id", null: false
t.string "first_name", null: false
t.string "last_name", null: false
t.string "company", null: false
t.string "job_title", null: false
t.string "phone_number"
t.text "description"
t.datetime "created_at"
t.datetime "updated_at"
t.string "avatar"
t.string "location"
end

最佳答案

好吧,让我们来解释三种不同的方法来完成您正在寻找的东西。

首先,includesjoins 是有区别的仅包括预先加载与关联的所有指定列的关联。它不允许您从两个表中查询或选择多个列。它是 joins 做的。它允许您查询两个表并选择您选择的列。

 def set_sidebar_users
@profiles_sidebar = Profile.select("profiles.first_name,profiles.last_name,profiles.id,users.email as user_email,user_id").joins(:user).order("profile.created_at desc").limit(3) if user_signed_in?
end

它将返回 Profiles 关系,其中包含您在 select 子句中提供的所有列。您可以像获取配置文件对象 e-g

一样获取它们

@profiles_sidebar.first.user_email 将为您提供此配置文件的用户电子邮件。

如果您想查询多个表或想从两个表中选择多个列,这种方法是最好的。

2.采摘

def set_sidebar_users
@profiles_sidebar = Profile.order(created_at: :desc).includes(:user).limit(3).pluck("users.email,profiles.first_name") if user_signed_in?
end

Pluck 仅用于从多个关联中获取列,但它不允许您使用 ActiveRecord 的强大功能。它只是以相同的顺序返回所选列的数组。就像在第一个示例中一样,您可以使用 @profiles_sidebar.first.user 获取配置文件对象的用户,但是使用 pluck 则不能,因为它只是一个普通数组。所以这就是为什么您的大多数解决方案都会引发错误 profile.user is not defined

  1. 与所选列的关联。

现在这是选项三。在第一个解决方案中,您可以在两个表上获取多个列并使用 ActiveRecord 的功能,但它不会预先加载关联。因此,如果您循环遍历返回结果的关联,如 @profiles_sidebar.map(&:user)

,它仍然会花费您 N+1 个查询

因此,如果您想使用 includes 但想使用选定的列,那么您应该与选定的列建立新的关联并调用该关联。例如在 profile.rb

belongs_to :user_with_selected_column,select: "users.email,users.id"

现在你可以在上面的代码中包含它

def set_sidebar_users
@profiles_sidebar = Profile.order(created_at: :desc).includes(:user_with_selected_column).limit(3) if user_signed_in?
end

现在这将急切加载用户,但只会选择用户的电子邮件和 ID。更多信息可以在 ActiveRecord includes. Specify included columns

更新

正如您询问的关于 pluck 的优点,让我们来解释一下。如您所知,pluck 返回普通数组。所以它不会实例化 ActiveRecord 对象,它只是返回你从数据库返回的数据。所以 pluck 最好用在不需要 ActiveRecord 对象而只是以表格形式显示返回数据的地方。Select 向您返回关系,以便您可以进一步查询它或在它的实例上调用模型方法。所以如果我们总结一下,我们可以说提取模型值,选择模型对象

更多信息可以在http://gavinmiller.io/2013/getting-to-know-pluck-and-select/找到

关于ruby-on-rails - rails4 采摘顺序和限制,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36128825/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com