JavaScript API
查看文档是否存在
const { Client } = require('@elastic/elasticsearch')
const client = new Client({ node: 'http://localhost:9200' })
async function run () {
await client.index({
index: 'game-of-thrones',
id: '1',
body: {
character: 'Ned Stark',
quote: 'Winter is coming.'
}
})
const { body } = await client.exists({
index: 'game-of-thrones',
id: 1
})
console.log(body) // true
}
run().catch(console.log)最后更新于