gpt4 book ai didi

ruby - 导轨 3.2 : how to find all parents from a collection of children

转载 作者:数据小太阳 更新时间:2023-10-29 07:38:08 24 4
gpt4 key购买 nike

给定一组“书籍”,找到所有“作者”(无重复)的最佳方法是什么?

假设我们有一个经典关联:

class Author < ActiveRecord::Base
has_many :books
end

class Book < ActiveRecord::Base
belongs_to :author
end

我现在的做法是这样的:

@books = Book.where("some condition")
@authors = Author.where(:id => @books.map(&:author_id))

有没有更好的方法呢?

最佳答案

这里有一个方法:

@books = Book.where("some condition").includes(:author)
@authors = @books.map(&:author).compact.uniq

解释:

  • include 会急切加载作者,这样您就不会在每次一本书需要其作者时进行可怕的 O(n) db 调用...
  • uniq 删除重复的作者(在这种情况下你可能想使用 inverse_of 选项不确定)

关于ruby - 导轨 3.2 : how to find all parents from a collection of children,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14395692/

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