Как многоуровневые ассоциации? - PullRequest
3 голосов
/ 10 мая 2011

У меня есть эта настройка:

Continent -> Country -> City -> Post

а у меня

class Continent < ActiveRecord::Base
   has_many :countries
end

class Country < ActiveRecord::Base
  belongs_to :continent
  has_many :cities
end

class City < ActiveRecord::Base
  belongs_to :country
  has_many :posts
end

class Post < ActiveRecord::Base
  belongs_to :city
end

Как получить все континенты, имеющие сообщения через эту ассоциацию

Как:

@posts = Post.all

@posts.continents #=> [{:id=>1,:name=>"America"},{...}] 

1 Ответ

12 голосов
/ 10 мая 2011

Вы можете сделать это:

Continent.all(:joins => {:countries => {:cities => :posts}}).uniq

Или это:

class Continent < ActiveRecord::Base
  has_many :countries

  named_scope :with_post, :joins => {:countries => {:cities => :posts}}
end

# And then
Continent.with_post.uniq

Или это:

Post.all(:include => {:city => {:country => :continent}}).map { |post| post.city.country.continent }.uniq

Или это:

class Post < ActiveRecord::Base
  belongs_to :city

  named_scope :include_continent, :include => {:city => {:country => :continent}}

  def continent
    city.try(:country).try(:continent)
  end
end

# And then
Post.include_continent.map(&:continent).uniq
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...