是否可以使用以下查询检索命中字段名称?
"query": { "query_string": { "query": "the quick brown fox" } }
文件说
"默认为index.query.default_field索引设置,默认为_all."
但我需要的是正确的命中字段名称.
您可以使用突出显示来查看与您的查询匹配的字段
{ "query": { "query_string": { "query": "the quick brown fox" } }, "highlight": { "fields": { "*": {} }, "require_field_match": false } }
此查询将fields
在highlight
与您的查询匹配的部分中返回