我尝试使用Searchkick运行搜索并根据多个模型返回。
我的书模型包含此
class Book < ActiveRecord::Base
searchkick
has_many :book_subjects
has_many :subjects, through: :book_subjects
belongs_to :author
belongs_to :publisher
end
然后我的控制器有了这个
def index
if params[:search].present?
@books = Book.search(params[:search], operator: "or")
else
@books = Book.all
end
end
我希望搜索结果能够搜索相关模型并返回任何结果 - 所以boo主题名称,作者和发布者。
感谢
答案 0 :(得分:13)
在Book模型中,您需要有一个search_data
块用于索引。
def search_data
attributes.merge(
author_name: author(&:name)
publisher_name: publisher(&:name)
subjects_name: subjects.map(&:name)
)
end
这会将关联添加到索引中。
您使用.map
方法进行has_many
关联。