如何在弹性搜索上使用查询字符串搜索查询字段?
我想将此查询转换
GET demo-index/_search
{
"fields": [
"*"
]
}
为
GET demo-index/_search?fields=*
:是否可以以这种方式或类似的方式进行字段查询,而不使用 json 正文作为请求?
I want to convert this query:
GET demo-index/_search
{
"fields": [
"*"
]
}
into something like this:
GET demo-index/_search?fields=*
is it possible to do fields queries in this way or a way similar to it without using a json body for the request?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试使用 filter_path :
如果我们有下一个返回:
并且我们想返回所有字段,我们应该按如下方式编写路径:
如果我们想要像“用户名”这样的特定字段,我们应该将路径写为如下
You can try with filter_path :
If we've have the next return:
And we would like to return all fields,we should write the path as follows:
If we would like the specifics fields like "username", we should write the path as follows