字段为date,integer,float类型,使用range去查询结果,使用高亮不显示
Elasticsearch | 作者 jia18811653719 | 发布于2021年07月15日 | 阅读数:942
字段为date,integer,float类型,使用range去查询结果,使用高亮不显示,语句为:
{
"query": {
"bool": {
"must": [
{
"range": {
"age": {
"gte": 20
}
}
}
]
}
},
"highlight": {
"fields": {
"age": {
"pre_tags": """<span style="color: #ff3c1d">""",
"post_tags": "</span>",
"require_field_match": "false"
}
},
"order": "score"
}
}
{
"query": {
"bool": {
"must": [
{
"range": {
"age": {
"gte": 20
}
}
}
]
}
},
"highlight": {
"fields": {
"age": {
"pre_tags": """<span style="color: #ff3c1d">""",
"post_tags": "</span>",
"require_field_match": "false"
}
},
"order": "score"
}
}
1 个回复
tongchuan1992 - 学无止境、学以致用
赞同来自:
例如另外字段包含一个共有的值的查询,确保不会影响你age的查询的范围在测试测试