有没有办法让我只得到我的文档&的_source中存在的数据。从索引中检索它时,没有任何其他元数据,如_index,_type,_id,_score?
答案 0 :(得分:1)
我知道怎么做。
GET /<index>/<type>/<id>/_source
仅返回_source
字段。
实施例:
使用ID 123
PUT /website/blog/123
{
"title": "My first blog entry",
"text": "Just trying this out...",
"date": "2014/01/01"
}
仅检索_source
字段
GET /website/blog/123/_source
返回:
{
"title": "My first blog entry",
"text": "Just trying this out...",
"date": "2014/01/01"
}