【发布时间】:2014-07-09 20:17:31
【问题描述】:
我需要用照片增强 Foobars。我尝试了以下方法:
class Foobar < ActiveRecord::Base
searchable do
text :full_name, :as => :full_name_textp
boolean :photo do
self.user.try(:avatar_file_name) != nil ? true : false
end
latlon(:location) { Sunspot::Util::Coordinates.new(latitude, longitude) }
boost { :photo ? 1000 : 1 }
end
end
当我重新索引 foobar 时,我没有收到任何错误,但是,当我搜索本地 foobar 时,带有照片的 foobar 不会被推到顶部。
【问题讨论】: