我正在使用弹性搜索的Ajax请求来获取搜索结果。 最后,我找到了我必须要查询的查询。 (这是一个后续问题链接 ) 这是cURL中的查询: [~]$ curl -XGET ‘localhost:9200/firebase/_search?pretty’ -H ‘Content-Type: application/json’ -d’ > {“query”: {“match”: {“song”: {“query”: “i am in”, “operator”: “and”}}}}’ 结果: { “took” : 286, “timed_out” : false, “_shards” : { “total” : 5, “successful” : 5, “failed” : 0 }, “hits” : { “total” : 1, “max_score” : 0.8630463, “hits” : […]