在Sunspot中如何搜索通配符? 使用*不起作用,我想返回所有教育結果。sunspot solr:搜索「Everything」/通配符
教育是存在可以收集「全部」,「高」,「低」,所以現在我的想法是從搜索塊中刪除它,如果它的「全部」
with(:orientation, params[:orientation])
if params[:orientation].present? unless params[:orientation] == "all"
必由之路是更好的方法嗎?
搜索塊:
search = Sunspot.search Session do
if params[:education].present?
if params[:education] == "all"
# Use a wildcard here
#with(:education, *)
end
end
end