ElasticSearch: 查询不存在指定字段的数据不存在note字段的数据:123456789101112GET /es_info/_search { "query": { "bool": { "must_not": { "exists": { "field": "note" } } } } }