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 回答