老师:我这个搜索的是东方网 ,高亮显示为什么多个‘’吧‘’字也高亮了?
GET d****/_search
{
"query" : {
"bool": {
"must": [
{
"match_phrase_prefix": {
"com_name": {
"query" : "东方网",
"analyzer" : "ik_max_word"
}
}
}
]
}
},
"highlight" : {
"pre_tags" : ["<em>"],
"post_tags" : ["</em>"],
"fields" : {
"*": {}
}
}
}
结果:
"hits" : {
"total" : 500,
"max_score" : 964.251,
"hits" : [
{
"_index" : "dfzx_prd201905",
"_type" : "com_search",
"_id" : "109924131",
"_score" : 964.251,
"_source" : {
"is_check_info" : null,
"is_abnormal" : null,
"listed_com" : null,
"tax_credit" : null,
"is_illegal_info" : null,
"is_equity_info" : null,
"is_purchase_land" : null,
"reg_unit" : null
},
"highlight" : {
"com_name" : [
"<em>东方</em><em>网吧</em>"
]
}
},
展开