Algolia 匹配精确属性
Algolia matching exact attribute
当我尝试使用
restrictSearchableAttributes
使用 Javascript 客户端
我明白了
Invalid setting for restrictSearchableAttributes, attribute "field" is not in attributesToIndex
但是我正在使用 Laravel 包保存并且我已经在那里设置了 attributesToIndex 字段?
restrictSearchableAttributes
只能用于将可搜索属性限制为索引设置所描述内容的子集。
因此,您需要确保 field
在 attributesToIndex
列表中(在您的索引设置中),然后才能限制对该属性的搜索。
当我尝试使用
restrictSearchableAttributes
使用 Javascript 客户端
我明白了
Invalid setting for restrictSearchableAttributes, attribute "field" is not in attributesToIndex
但是我正在使用 Laravel 包保存并且我已经在那里设置了 attributesToIndex 字段?
restrictSearchableAttributes
只能用于将可搜索属性限制为索引设置所描述内容的子集。
因此,您需要确保 field
在 attributesToIndex
列表中(在您的索引设置中),然后才能限制对该属性的搜索。