0
私は3つのモデルがあります:Writer、Book、Page。railsすべてのhas_manyレコードにアクセス
Writer has_many :books
Writer has_many :pages, through: :books
Book has_many :pages
私はディスプレイに書籍を通じて作家に属しているすべてのページをしたいが、それはエラーを与える:
Writer.first.books #=> works, shows all writer books
Book.first.pages #=> works, shows all book pages
Writer.first.books.pages #=> does not work, must in theory display all pages that belong to the writer
は、すべてのページを表示するための最良の方法は何ですか、 each do |x|
を除く