0

乾杯!私はtourこれらの関連付けを持つモデルを持っています:

  has_many :tour_in_the_countries
  has_many :country, :through => :tour_in_the_countries

そして tour_index.rb で

ThinkingSphinx::Index.define :tour, :with => :active_record do
  indexes :title
  indexes :preview
end

この場合、国名をインデックスに追加するにはどうすればよいですか?

4

1 に答える 1

2

これでうまくいくはずです:

indexes tour_in_the_countries.country.name, :as => :countries
于 2013-04-05T10:03:12.240 に答える