2021
05-23
05-23
详解JavaScript错误捕获
一、基本使用与逻辑使用try{//code....}catch(err){//errorhandling}finally{//nomatterwhathappensinthetry/catch(errorornoerror),thiscodeinthefinallystatementshouldrun.}逻辑二、特性try...catch仅适用于运行时错误,解释阶段错误无法正常工作try{{{{{{{{}catch(err){console.error(err)}//引擎在‘parse-time'出错,导致无法理解代码,因此无法捕捉try...catch只能同步工作try{...
继续阅读 >