使用rails查找与嵌套关联的记录

时间:2016-03-31 21:16:56

标签: ruby-on-rails ruby ruby-on-rails-4 activerecord where-clause

我有以下型号:

class Book < ApplicationRecord
  has_many :chapters
end

class Chapter < ApplicationRecord
  belongs_to :book
  has_many :pages
end

class Page < ApplicationRecord
  belongs_to :chapter
  has_many :paragraphs
end

class Paragrpah < ApplicationRecord
  belongs_to :page
end

现在我想获得特定书籍中所有段落的列表。类似的东西:

@parapgraphs = Paragraph.pages.chapters.book.where(:title => 'My Book')

当我这样做时,我得到:

undefined method 'chapters' for 'pages'

我正在使用Rails 4.2和Ruby 2.2

2 个答案:

答案 0 :(得分:5)

如果您希望任何这些对象之间的链接始终存在且可查询,请考虑添加has_many通过关系。

http://guides.rubyonrails.org/association_basics.html#the-has-many-through-association

如果它更像是一次性查询,你可以做这样的事情

@paragraphs = Paragraph.joins(page: { chapter: :book }).where(books: { title: 'My Book' })

答案 1 :(得分:1)

试试这个

@paragraphs = Book.find_by(title: 'My book').chapters.map{ |c| c.pages.map{ |p| p.paragraphs.to_a }.flatten }.flatten