gpt4 book ai didi

ruby-on-rails - has_one 关联不与包括一起工作

转载 作者:行者123 更新时间:2023-11-29 13:14:41 25 4
gpt4 key购买 nike

在组合 has_one 关联和 includes 时,我一直在尝试找出一些奇怪的行为。

class Post < ApplicationRecord
has_many :comments

has_one :latest_comment, -> { order('comments.id DESC').limit(1) }, class_name: 'Comment'
end

class Comment < ApplicationRecord
belongs_to :post
end

为了测试这一点,我创建了两个帖子,每个帖子都有两条评论。以下是一些显示奇怪行为的 Rails 控制台命令。当我们使用 includes 时,它会忽略 latest_comment 关联的顺序。

posts = Post.includes(:latest_comment).references(:latest_comment)
posts.map {|p| p.latest_comment.id}
=> [1, 3]

posts.map {|p| p.comments.last.id}
=> [2, 4]

我希望这些命令具有相同的输出。 posts.map {|p| p.latest_comment.id} 应该返回 [2, 4]。由于 n+1 个查询问题,我无法使用第二个命令。

如果您单独调用最新评论(类似于上面的 comments.last),那么一切都会按预期进行。

[Post.first.latest_comment.id, Post.last.latest_comment.id]
=> [2, 4]

如果您有其他实现此行为的方法,我欢迎您提供意见。这个让我感到困惑。

最佳答案

我认为使用 PostgreSQL 进行此操作的最简洁方法是使用数据库 View 来支持您的 has_one :latest_comment 关联。数据库 View 或多或少是一个命名查询,其作用类似于只读表。

这里有三个广泛的选择:

  1. 使用大量查询:一次获取帖子,然后一次查询每个帖子以获取其最新评论。
  2. 将最新评论非规范化到帖子或其自己的表格中。
  3. 使用 window functioncomments 表中剥离最新评论。

(1) 是我们要避免的。 (2) 往往会导致一连串的过度复杂化和错误。 (3) 很好,因为它让数据库做它擅长的事情(管理和查询数据),但 ActiveRecord 对 SQL 的理解有限,因此需要一些额外的机制来使其正常运行。

我们可以使用 row_number 窗口函数来查找每个帖子的最新评论:

select *
from (
select comments.*,
row_number() over (partition by post_id order by created_at desc) as rn
from comments
) dt
where dt.rn = 1

psql 中运行内部查询,您应该会看到 row_number() 正在做什么。

如果我们将该查询包装在 latest_comments View 中并在其前面粘贴一个 LatestComment 模型,您可以 has_one :latest_comment 等等将工作。当然,这并不是那么容易:

  1. ActiveRecord 不理解迁移中的 View ,因此您可以尝试使用类似 scenic 的东西或切换 from schema.rb to structure.sql .

  2. 创建 View :

    class CreateLatestComments < ActiveRecord::Migration[5.2]
    def up
    connection.execute(%q(
    create view latest_comments (id, post_id, created_at, ...) as
    select id, post_id, created_at, ...
    from (
    select id, post_id, created_at, ...,
    row_number() over (partition by post_id order by created_at desc) as rn
    from comments
    ) dt
    where dt. rn = 1
    ))
    end
    def down
    connection.execute('drop view latest_comments')
    end
    end

    如果您使用的是 scenic,那看起来更像是正常的 Rails 迁移。我不知道您的 comments 表的结构,因此其中的所有 ...;如果您愿意并且不介意 LatestComment 中的杂散 rn 列,您可以使用 select *。您可能想要查看关于comments 的索引以使此查询更高效,但您迟早会这样做。

  3. 创建模型,不要忘记手动设置主键或 includesreferences 不会预加载任何内容(但 preload 将):

    class LatestComment < ApplicationRecord
    self.primary_key = :id
    belongs_to :post
    end
  4. 将您现有的 has_one 简化为:

    has_one :latest_comment
  5. 也许向您的测试套件添加一个快速测试,以确保 CommentLatestComment 具有相同的列。当 comments 表更改时, View 不会自动更新,但一个简单的测试将作为提醒。

  6. 当有人提示“数据库中的逻辑”时,告诉他们在您有工作要做时将他们的教 strip 到别处。


只是为了不在注释中丢失,您的主要问题是您滥用了 has_one 关联中的 scope 参数。当你说这样的话时:

Post.includes(:latest_comment).references(:latest_comment)

has_onescope 参数以 includesreferences 的 LEFT JOIN 的连接条件结束添加到查询。 ORDER BY 在连接条件中没有意义,因此 ActiveRecord 不包含它并且您的关联分崩离析。您不能使作用域依赖于实例(即 ->(post) { some_query_with_post_in_a_where... })来将 WHERE 子句放入连接条件中,然后 ActiveRecord 会给您一个 ArgumentError 因为 ActiveRecord 不知道如何将实例相关范围与 includesreferences 一起使用。

关于ruby-on-rails - has_one 关联不与包括一起工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50634426/

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