作者:阿蕓 | 来源:互联网 | 2023-06-29 19:30
媒介自从ECMA-262第3版引入了trycatch语句,作为JavaScript中处置惩罚非常的一种规范体式格局。基础的语法以下所示。一、trycatch基础语法try{可能会致
媒介
自从ECMA-262第3版引入了try catch
语句,作为Javascript中处置惩罚非常的一种规范体式格局。基础的语法以下所示。
一、try catch基础语法
try {
//可能会致使毛病的代码
} catch (error) {
//在毛病发作时怎样处置惩罚
}finally {
//纵然报错一直实行
}
二、try catch特性
1.try catch耗机能
1.1 try catch耗机能道理
ECMAScript 2015 -The try Statement
13.15.5 Static Semantics: VarDeclaredNames
- TryStatement : try Block Catch Finally
- 1.Let names be VarDeclaredNames of Block.
- 2.Append to names the elements of the VarDeclaredNames of Catch.
- 3.Append to names the elements of the VarDeclaredNames of Finally.
- 4.Return names.
13.15.6 Static Semantics: VarScopedDeclarations
- TryStatement : try Block Catch Finally
- 1.Let declarations be VarScopedDeclarations of Block.
- 2.Append to declarations the elements of the VarScopedDeclarations of Catch.
- 3.Append to declarations the elements of the VarScopedDeclarations of Finally.
- 4.Return declarations.
依据上面ECMAScript文档的
13.15.5和
13.15.6`。
下面仅为本妹子本身的翻译明白,仅供参考
上面大概说运转try catch
时,须要将当前的词法环境和作用域悉数离别增加到catch
和Finally
所要实行的代码块中。从上能够推断出try catch
是斲丧机能的。
1.2 try catch耗机能试验
下面我用Chrome62
和IE9
离别增加多个try catch
,举行对照试验,虽然,很想扬弃万恶的IE
,然则许多国内的产物不准许呀,除非我们去健身房再多练练,打一架,嘿嘿~~
1.2.1 试验数据:
//没有加try catch
(function () {
var i = 0;
i++;
}())
//有try catch
(function () {
var i = 0;
try {
i++;
} catch (ex) {
} finally {
}
}())
1.2.2 试验效果:
1.2.3 试验链接:
https://jsperf.com/test-try-catch3
https://jsperf.com/test-try-catch
上面试验数据对照得知,try catch
会斲丧机能,然则try catch
对Chrome
的影响比IE11
小许多,据说是V8引擎新的编译器TurboFan
起到的作用,有兴致的小伙伴们能够看下v8_8h_source的3354行起,然则IE11
是slower不少的。这就依据小伙伴们的营业对象了,假如只面向当代浏览器,try catch
斲丧机能影响会很小;假如须要兼容IE
或内嵌在低端的webView
时,可适当斟酌下try catch
斲丧机能。
2.try catch捕捉不到异步毛病
尝试对异步要领举行try catch
操纵只能捕捉当次事宜轮回内的非常,对callback实行时抛出的非常将无计可施。
try {
setTimeout(()=>{
const A = 1
A = 2
},0)
} catch (err) {
// 这里并不能捕捉回调内里抛出的非常
console.log("-----catch error------")
console.log(err)
}
异步状况想捕捉非常,发起在异步函数里包一层try catch
。
setTimeout(() => {
try {
const A = 1
A = 2
} catch (err) {
console.log(err)
}
}, 0)
3.try catch抛出毛病
与 try-catch
语句相配的另有一个 throw
操纵符,随时抛出自定义毛病,能够依据差别毛病范例,建立自定义毛病音讯。
throw new Error("Something bad happened.");
throw new SyntaxError("I don’t like your syntax.");
throw new TypeError("What type of variable do you take me for?"); throw new RangeError("Sorry, you just don’t have the range.");
throw new EvalError("That doesn’t evaluate.");
throw new URIError("Uri, is that you?");
throw new ReferenceError("You didn’t cite your references properly.");
假如以为自定义的报错不合理,想看原生报错,能够运用Chrome
的Pause on exceptions
功用
三、慎用try catch
try catch
最适合处置惩罚那些我们无法控制的毛病,如I/O
操纵等,后端nodeJs
或java
读取I/O
操纵比较多比方读数据库,所以用try catch
比较多。前端能够用在上传图片、运用他人的js
库报错、async await
同步伐接口等处所实用。
async function f() {
try {
await Promise.reject('出错了');
} catch(e) {
}
return await Promise.resolve('hello world');
}
然则大部分前端客户端代码处置惩罚都不怎样依靠环境也没有I/O
操纵,都是本身写的代码,在明明白白地晓得本身的代码会发作毛病时,再运用try catch
语句就不太适宜了,对应数据范例的毛病,发起小伙伴们用解构赋值指定默认值、&&
和||
来躲避,所以慎用try catch。
foo = (obj = {}) => {
let obj1 = result || {};
if (obj && obj.code) {
console.log('obj.code',obj.code)
}
}
参考资料
- https://raoenhui.github.io/js/2018/12/16/tryCatch
- ECMAScript 2015 -The try Statement
- https://developers.google.com/web/updates/2015/05/automatically-pause-on-any-exception
- https://v8docs.nodesource.com/node-0.8/d4/da0/v8_8h_source.html
Happy coding .. :)