改进下面的代码 GET ads_user_profile/_search { "query": { "bool": { "should": [ {"term": {"area": "河"}}, {"term": { "area": "陕"}} ] } } , "_source": [ "aid", "labels_codes", "phone","area" ] }
时间: 2023-05-18 17:05:38 浏览: 52
属性页VC源代码:disable_tab
改进后的代码:
GET ads_user_profile/_search
{
"query": {
"bool": {
"should": [
{
"match": {
"area": "河"
}
},
{
"match": {
"area": "陕"
}
}
]
}
},
"_source": [
"aid",
"labels_codes",
"phone",
"area"
]
}
改进说明:
1. 将 "term" 改为 "match",使用 "match" 可以进行分词匹配,更加灵活。
2. 将 "should" 中的 "term" 改为 "match"。
3. 增加了代码的可读性,将每个字段都单独占一行。
4. 去掉了多余的空格和逗号,使代码更加简洁。
阅读全文