有没有办法在索引后返回文档正文?

时间:2017-04-17 16:21:18

标签: node.js elasticsearch

我希望在索引文档后返回文档的全部内容。弹性只返回:

{ 
    _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
}

这可能吗?

1 个答案:

答案 0 :(得分:-1)

GET / index_name / _search

将为您提供所有文件以及属性及其各自的值。