获取

编辑

get API 允许从索引中根据其 id 获取一个类型化的 JSON 文档。以下示例从名为 game-of-thrones 的索引中,在名为 _doc 的类型下,获取 id 值为 '1' 的 JSON 文档。

'use strict'

const { Client } = require('@elastic/elasticsearch')
const client = new Client({
  cloud: { id: '<cloud-id>' },
  auth: { apiKey: 'base64EncodedKey' }
})

async function run () {
  await client.index({
    index: 'game-of-thrones',
    id: '1',
    document: {
      character: 'Ned Stark',
      quote: 'Winter is coming.'
    }
  })

  const document = await client.get({
    index: 'game-of-thrones',
    id: '1'
  })

  console.log(document)
}

run().catch(console.log)