我想使用如下所示的 elasticsearch-model gem 运行多个搜索参数。在我使用gem Tire使用多个查询参数搜索记录之前。
我的模型:
class Book < ApplicationRecord
include Tire::Model::Search
include Tire::Model::Callbacks
mapping do
indexes :id, type: 'integer'
indexes :title
indexes :author
indexes :category
indexes :price
end
def self.search(params)
tire.search(load: true) do
query do
boolean do
must { string params[:title] } if params[:title].present?
must { string params[:author] } if params[:author].present?
must { string params[:category] } if params[:category].present?
should { range :price, { gte: params[:price_range_min], lte:
params[:price_range_max] } } if
params[:price_range_min].present?
&& params[:price_range_max].present?
end
end
end
end
end
我的控制器:
class BookController < ApplicationController
def index
@books = Book.search(params)
@books =
Kaminari.paginate_array(@books).page(params[:page]).per(10)
end
end
我遵循了这个文档elasticsearch-model但我只得到了两个字段参数的结果。
有什么帮助吗?