我希望在索引文档后返回文档的全部内容。弹性只返回:
{
_index: 'doc-dataset',
_type: 'my-doc',
_id: 'AVt8nyuxRNHpCQ5APUtx',
_version: 1,
result: 'created',
_shards: { total: 2, successful: 1, failed: 0 },
created: true,
status: 201
}
我希望它返回类似的内容:
{
_index: 'doc-dataset',
_type: 'my-doc',
_id: 'AVt8nyuxRNHpCQ5APUtx',
_version: 1,
result: 'created',
_shards: { total: 2, successful: 1, failed: 0 },
created: true,
status: 201,
source:{
prop: value,
prop: value,
...
prop: value
}
这可能吗?
答案 0 :(得分:-1)
GET / index_name / _search
将为您提供所有文件以及属性及其各自的值。