本文介绍了无法在弹性搜索中搜索'#'的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
此查询 -
curl -XGET http://localhost:9200/haystack/modelresult/_search?q=post_text:#test
无法执行错误
SearchPhaseExecutionException[Failed to execute phase
状态400
推荐答案
尝试这样:
curl -XPOST "http://localhost:9200/haystack/modelresult/_search" -d'
{
"query": {
"match": {
"post_text": "#test"
}
}
}'
或这个:
curl -XPOST "http://localhost:9200/haystack/modelresult/_search" -d'
{
"query": {
"term": {
"post_text": "#test"
}
}
}'
这篇关于无法在弹性搜索中搜索'#'的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!