你的浏览器禁用了JavaScript, 请开启后刷新浏览器获得更好的体验!
输入关键字进行搜索
搜索:
没有找到相关结果
rochy - rochy_he
赞同来自:
GET twitter/_search { "query" : { "match_phrase": { "message": "number 1" } }, "highlight" : { "fields" : { "message" : { "type": "plain", "fragment_size" : 15, "number_of_fragments" : 3, "fragmenter": "simple" } } } } { ... "hits": { "total": 1, "max_score": 1.601195, "hits": [ { "_index": "twitter", "_type": "_doc", "_id": "1", "_score": 1.601195, "_source": { "user": "test", "message": "some message with the number 1", "date": "2009-11-15T14:12:12", "likes": 1 }, "highlight": { "message": [ " with the <em>number</em>", " <em>1</em>" ] } } ] } }
要回复问题请先登录或注册
1 个回复
rochy - rochy_he
赞同来自:
那你搜索的时候搜索 my_all 字段,高亮设置 my_all 字段即可;
搜索结果里面,可以看到 highlight 节点,里面就包含了高亮结果
可以参考下面官方案例