Algolia 前缀匹配
Algolia Prefix Matching
我有记录'ABC756'
如何使它匹配 typeahead.js
中的查询
756
它只在我输入时匹配
ABC
我的设置
{"params":"query:756
hitsPerPage:15
restrictSearchableAttributes: attr
queryType:prefixAll"}
与大多数搜索引擎一样,Algolia 本机 不支持子字符串和后缀匹配。您可以做的是预处理您的对象以生成所需的所有子字符串(或足够)。在这里解释:https://www.algolia.com/doc/faq/toubleshooting/how-can-i-make-queries-within-the-middle-of-a-word
我有记录'ABC756'
如何使它匹配 typeahead.js
中的查询756
它只在我输入时匹配
ABC
我的设置
{"params":"query:756
hitsPerPage:15
restrictSearchableAttributes: attr
queryType:prefixAll"}
与大多数搜索引擎一样,Algolia 本机 不支持子字符串和后缀匹配。您可以做的是预处理您的对象以生成所需的所有子字符串(或足够)。在这里解释:https://www.algolia.com/doc/faq/toubleshooting/how-can-i-make-queries-within-the-middle-of-a-word