我使用 javascript api 的 updateByQuery 更新我的文档
const res = await this.elastic.update({
index: MY_INDEX,
type: MY_TYPE,
id: MY_ID,
_source: true,
body: {
script: {
source: `
// stuff
`,
},
};
}
如何抛出或设置自定义错误消息,以便在阅读响应时知道它失败的原因?