gpt4 book ai didi

node.js - 如何在Elastic的updateByQuery中 “throw”自定义错误消息

转载 作者:行者123 更新时间:2023-12-03 01:33:59 26 4
gpt4 key购买 nike

我使用javascript api的updateByQuery更新我的文档

  const res = await this.elastic.update({
index: MY_INDEX,
type: MY_TYPE,
id: MY_ID,
_source: true,
body: {
script: {
source: `
// stuff
`,
},
};
}

我如何抛出或设置自定义错误消息,以便在阅读响应时知道为什么失败?

最佳答案

只需抛出一个异常

throw new Exception('your custom message here');

轻松编写脚本中的任何地方。

然后使用try catch捕获错误。
// body must be in async function to use await + try catch
const fn = async () => {
try {
const res = await this.elastic.update({
index: MY_INDEX,
type: MY_TYPE,
id: MY_ID,
_source: true,
body: {
script: {
source: `
// stuff
throw new Exception('your message here');
// stuff
`,
},
};
} catch (e) {
// logs 'your message here'
console.log(e.body.error.caused_by.caused_by.reason);
}
}

关于node.js - 如何在Elastic的updateByQuery中 “throw”自定义错误消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53877959/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com