gpt4 book ai didi

javascript - 未处理的拒绝

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

我正在尝试处理( Node :29804)UnhandledPromiseRejectionWarning:test1第一次抛出,有人知道我如何干净利落地处理它吗?我对在这种情况下使用等待不感兴趣。

const test0 = async () => {
try {
throw('test0 first throw');
}
catch(e) {
console.log('test0 last catch');
throw('test0 last throw');
}
}

const test1 = async () => {
try {
test0()
.catch(e => {
console.log('test1 first catch');
throw('test1 first throw'); // This throws unhandled exception
})
// return(0);
}
catch(e) {
console.log('test1 last catch');
throw('test1 last throw');
}
}

const caller = async () => {
try {
let res = test1().
catch(e => {
console.log('PRE FINAL CATCH');
})
console.log(res);
}
catch(e) {
console.log('FINAL CATCH');
// console.log(e);
}
}

caller();

最佳答案

混合使用 try/catchthen()/catch() 风格处理 Promise 的情况有点罕见。

您可以删除所有不必要的 try/catch 并在需要时return。不涉及 await。如果其他函数中的某个地方发生错误,则会记录该错误并将其返回给调用者:

const test0 = async () => {
try {
throw('test0 first throw');
}
catch(e) {
console.log('test0 last catch');
throw('test0 last throw');
}
}

const test1 = async () => {
return test0()
.catch(e => {
console.log('test1 first catch');
throw('test1 first throw'); // This throws unhandled exception
});
}

const caller = async () => {
return test1().catch((e) => {
console.log('PRE FINAL CATCH');
});
}

caller();

如果还有其他要求,我很乐意修改此答案。

关于javascript - 未处理的拒绝,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61399063/

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