[js]js中6种错误处理机制

Posted 毛台

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[js]js中6种错误处理机制相关的知识,希望对你有一定的参考价值。

js中6种错误

http://javascript.ruanyifeng.com/grammar/error.html#toc5
https://www.jianshu.com/p/467b9a145dcc

try cache

try {
    console.log(x);
}catch (e) {
    console.dir(e); 
}
console.log(\'还可以执行\')
try {
    console.log(x);
}catch (e) {
    console.dir(e);
    throw new Error(\'手动抛出错误,终止代码执行\')
}
console.log(\'程序被终止了,无法执行\')

以上是关于[js]js中6种错误处理机制的主要内容,如果未能解决你的问题,请参考以下文章

JS异步处理机制的几种方式

温故而知新 js 的错误处理机制

js中错误处理的相关知识

CMS垃圾回收机制

js错误机制

Chrome-Devtools代码片段中的多个JS库