gpt4 book ai didi

elasticsearch - 带有折叠功能的Reactivesearch Autosuggest

转载 作者:行者123 更新时间:2023-12-03 02:34:36 24 4
gpt4 key购买 nike

我似乎无法自动建议使用ascii折叠功能(即将重音转换为等价的ascii)

  <DataSearch
componentId="mainSearch"
dataField="_name"
categoryField="title"
className="search-bar"
queryFormat="and"
placeholder="Search for movies..."
iconPosition="left"
autosuggest={true}
filterLabel="search"
/>

制图
"_name": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
},
"ascii": {
"type": "text",
"analyzer": "autosuggest_analyzer"
},
"ascii2": {
"type": "text",
"analyzer": "ngram_analyzer"
}
}
},

最佳答案

感谢@David报告此问题。

您可以尝试将ASCII字段添加到dataField属性中吗? dataField prop可以接受String或Array,因此您可以在那里指定多个字段,例如

<DataSearch
dataField={["_name", "_name.ascii", ...othersIfAny]}
...
/>

关于elasticsearch - 带有折叠功能的Reactivesearch Autosuggest,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59146306/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com