gpt4 book ai didi

ruby-on-rails - 自加入递归加载?

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

我有一个自连接模型:

class Comment < ActiveRecord::Base
belongs_to :parent, :class_name => 'Comment', :foreign_key => 'parent_id'
has_many :children, :class_name => 'Comment', :foreign_key => "parent_id"
end

后来我希望先进行 1 次 sql 调用以获取所有相关评论,然后递归渲染它们。

我如何递归地急切加载?
comments = Comment.where(:post_id => @post_id).includes(:comments=> [:comments => [:comments .... #How do I get this to recursively eager load?

def show_comments(comment)
render comment
comment.children.each do |child|
show_comments(child)
end
end

最佳答案

您可以创建一个方法来检索 ID 的深层嵌套,加载这些 ID,然后 Rails 会像缓存一样使用它。

关于ruby-on-rails - 自加入递归加载?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8737693/

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