赞
踩
在第二行文本框中输入_search,第三行输入{}。_search特指查询操作,{}指查询所有数据。
在第二行文本框中输入test/_search,第三行输入{}。test为索引名称,_search特指查询操作,{}指查询所有数据。
在第二行文本框中输入test/xudongmaster/_search,第三行输入{}。test为索引名称,xudongmaster为类型名称,_search特指查询操作,{}指查询所有数据。
在第二行文本框中输入test/_search,第三行输入以下json数据。test为索引名称,_search特指查询操作,json数据指查询password属性为123456的数据。
- {
- "query":{
- "bool":{
- "must":[{
- "term":{
- "password":"123456"
- }
- }]
- }
- }
- }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。