在 Postman 中,向 ES 服务器发 POST 请求 :http://localhost:9200/user/_doc/1,请求体内容为:
{"name":"zhangsan","age":20,"sex":"男"}
在 Postman 中,向 ES 服务器发 POST 请求 :http://localhost:9200/user/_doc/2,请求体内容为:
{"name":"zhangsan1","age":21,"sex":"男"}
在 Postman 中,向 ES 服务器发 POST 请求 :http://localhost:9200/user/_doc/3,请求体内容为:
{"name":"zhangsan2","age":22,"sex":"男"}
在 Postman 中,向 ES 服务器发 POST 请求 :http://localhost:9200/user/_doc/4,请求体内容为:
{ "name":"lisi", "age":25, "sex":"女"}
match_phrase
在 Postman 中,向 ES 服务器发 POST 请求 :http://localhost:9200/user/_search,请求体内容为:
{ "query":{ "match_phrase":{ "name":"zhangsan" } }}
查询成功后,服务器响应结果