你的浏览器禁用了JavaScript, 请开启后刷新浏览器获得更好的体验!
输入关键字进行搜索
搜索:
没有找到相关结果
MCTW - 90后IT男
赞同来自:
POST test_index/test/1 { "product": "一吃饭", "company": "腾讯" } POST test_index/test/2 { "product": "一睡觉", "company": "腾讯" } GET test_index/test/_search { "query": { "bool": { "should": [ {"match": {"company": "腾讯"}}, {"match_phrase": {"product": "一二三"}} ] } }, "highlight": { "fields": { "company": {}, "product": {} } } }
{ "took": 2, "timed_out": false, "_shards": { "total": 5, "successful": 5, "failed": 0 }, "hits": { "total": 2, "max_score": 0.025070842, "hits": [ { "_index": "test_index", "_type": "test", "_id": "2", "_score": 0.025070842, "_source": { "product": "一睡觉", "company": "腾讯" }, "highlight": { "product": [ "<em>一</em>睡觉" ], "company": [ "<em>腾</em><em>讯</em>" ] } }, { "_index": "test_index", "_type": "test", "_id": "1", "_score": 0.025070842, "_source": { "product": "一吃饭", "company": "腾讯" }, "highlight": { "product": [ "<em>一</em>吃饭" ], "company": [ "<em>腾</em><em>讯</em>" ] } } ] } }
要回复问题请先登录或注册
90后IT男
1 个回复
MCTW - 90后IT男
赞同来自:
得到的结果里边还会高亮 product??,在es2.4里测试就没有这个问题