我有属于多个其他桌的面料模型。
class Fabric < ActiveRecord::Base
validates :name, presence: true
belongs_to :design
belongs_to :composition
belongs_to :collection
belongs_to :style
belongs_to :origin
belongs_to :texture
belongs_to :supplier
has_and_belongs_to_many :colours
searchable do
text :name, :boost => 5
text :description
text :composition do
composition.name
end
text :collection do
collection.name
end
text :style do
style.name
end
text :origin do
origin.name
end
text :texture do
texture.name
end
text :supplier do
supplier.name
end
end
end
我已经安装所有的反向关联(HAS_MANY)等。不过,我似乎没有能够拿到全文检索查询所有这些相关的表的名称字段。
任何帮助将不胜感激。
@search = Fabric.search do
fulltext params[:search]
end
@fabrics = @search.results
罗斯