不负长风
主页
(current)
博客
关于
友链
专栏
Python后端(1篇)
测试文章(7篇)
-->
es多字段查询
专栏
:
Python后端
最后更新于:
2024-08-31 12:28:01
# es查询同时指定多个字段 ```python # 创建 Elasticsearch 客户端连接 client = Elasticsearch(hosts=['localhost']) # 根据实际情况修改主机地址 # 定义查询请求体 query_body = { "query": { "bool": { "must": [ {"match": {"field1": "value1"}}, {"match": {"field2": "value2"}}, {"match": {"field3": "value3"}} ] } } } # 发送查询请求 response = client.search(index='your_index_name', body=query_body) # 根据实际情况修改索引名称 # 处理查询结果 for hit in response['hits']['hits']: print(hit['_source']) ```
No comments.
前一页
后一页
No comments.