我正在尝试为我的 Flower Store 实现简单的搜索请求,但由于我是轮胎和 ElasticSearch 的新手,所以我不知道该怎么做。
我有可搜索的模型和Product
habtm 模型Category
,,,Colour
。Flower
我想要的是每个关联的复选框,产生与此类似的请求:
http://example.com/search?q=some%20query&category_names[]=bouquet&category_names[]=marriage&colour_names[]=red&colour_names[]=yellow&colour_names[]=white&flower_names[]=rose&flower_names[]=tulip&price_min=100&price_max=1000
但我只需要展示以下产品:
a) prestent in any of the requested categories (OR);
b) have all of the requested colours (AND);
c) have all of the requested flowers (AND);
d) enter the price range between price_min and price_max.
参数是搜索任何文本,输入到文本字段中,在关联的q
名称中(比如说,red roses bouquet
),并用上面的标准显示它。
目前我只有
class Product
include Mongoid::Document
include Tire::Model::Search
include Tire::Model::Callbacks
has_and_belongs_to_many :categories
has_and_belongs_to_many :colours
has_and_belongs_to_many :flowers
def self.search(params)
tire.search(load: true, page: params[:page], per_page: 8) do |search|
search.query { string params[:query] } if params[:query].present?
end
end
def to_indexed_json
self.to_json(methods: [:category_names, :colour_names])
end
def category_names
self.categories.collect { |c| c.name }
end
def colour_names
self.colours.collect { |c| c.name }
end
end
并且不知道如何配置它。我读过filters
and facets
,但因为英语不是我的母语,我无法理解什么是什么以及如何使用它们。