gpt4 book ai didi

javascript - 在 javascript 中捕获多种类型的错误

转载 作者:行者123 更新时间:2023-12-03 07:40:43 24 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





Handling specific errors in JavaScript (think exceptions)

(7 个回答)


1年前关闭。




如果我这样定义自定义错误类:

class MyCustom Error extends Error{ }
我怎样才能捕捉到这样的多个错误:
try{

if(something)
throw MyCustomError();

if(something_else)
throw Error('lalala');


}catch(MyCustomError err){


}catch(err){

}
?
上面的代码不起作用并给出了一些语法错误

最佳答案

MDN docs建议使用 if/else block 内 catch陈述。这是因为不可能有多个 catch语句,您无法以这种方式捕获特定错误。

try {
myroutine(); // may throw three types of exceptions
} catch (e) {
if (e instanceof TypeError) {
// statements to handle TypeError exceptions
} else if (e instanceof RangeError) {
// statements to handle RangeError exceptions
} else if (e instanceof EvalError) {
// statements to handle EvalError exceptions
} else {
// statements to handle any unspecified exceptions
logMyErrors(e); // pass exception object to error handler
}
}

关于javascript - 在 javascript 中捕获多种类型的错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63438704/

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