你不知道的 javascript 错误和调用栈常识-mile米乐体育

大多数工程师可能并没留意过 js 中错误对象、错误堆栈的细节,即使他们每天的日常工作会面临不少的报错,部分同学甚至在 console 的错误面前一脸懵逼,不知道从何开始排查,如果你对本文讲解的内容有系统的了解,就会从容很多。而错误堆栈清理能让你有效去掉噪音信息,聚焦在真正重要的地方,此外,如果理解了 error 的各种属性到底是什么,你就能更好的利用他。

接下来,我们就直奔主题。

调用栈的工作机制

在探讨 js 中的错误之前,我们必须理解调用栈(call stack)的工作机制,其实这个机制非常简单,如果你对这个已经一清二楚了,可以直接跳过这部分内容。

简单的说:函数被调用时,就会被加入到调用栈顶部,执行结束之后,就会从调用栈顶部移除该函数,这种数据结构的关键在于后进先出,即大家所熟知的 lifo。比如,当我们在函数 y 内部调用函数 x 的时候,调用栈从下往上的顺序就是 y -> x 。

我们再举个代码实例:

function c() {     console.log('c'); }  function b() {     console.log('b');     c(); }  function a() {     console.log('a');     b(); }  a();

这段代码运行时,首先 a 会被加入到调用栈的顶部,然后,因为 a 内部调用了 b,紧接着 b 被加入到调用栈的顶部,当 b 内部调用 c 的时候也是类似的。在调用 c的时候,我们的调用栈从下往上会是这样的顺序:a -> b -> c。在 c 执行完毕之后,c 被从调用栈中移除,控制流回到 b 上,调用栈会变成:a -> b,然后 b 执行完之后,调用栈会变成:a,当 a 执行完,也会被从调用栈移除。

为了更好的说明调用栈的工作机制,我们对上面的代码稍作改动,使用 console.trace 来把当前的调用栈输出到 console 中,你可以认为console.trace 打印出来的调用栈的每一行出现的原因是它下面的那行调用而引起的。

function c() {     console.log('c');     console.trace(); }  function b() {     console.log('b');     c(); }  function a() {     console.log('a');     b(); }  a();

当我们在 node.js 的 repl 中运行这段代码,会得到如下的结果:

trace     at c (repl:3:9)     at b (repl:3:1)     at a (repl:3:1)     at repl:1:1 // <-- 从这行往下的内容可以忽略,因为这些都是 node 内部的东西     at realruninthiscontextscript (vm.js:22:35)     at siginthandlerswrap (vm.js:98:12)     at contextifyscript.script.runinthiscontext (vm.js:24:12)     at replserver.defaulteval (repl.js:313:29)     at bound (domain.js:280:14)     at replserver.runbound [as eval] (domain.js:293:12)

显而易见,当我们在 c 内部调用 console.trace 的时候,调用栈从下往上的结构是:a -> b -> c。如果把代码再稍作改动,在 b 中 c 执行完之后调用,如下:

function c() {     console.log('c'); }  function b() {     console.log('b');     c();     console.trace(); }  function a() {     console.log('a');     b(); }  a();

通过输出结果可以看到,此时打印的调用栈从下往上是:a -> b,已经没有 c 了,因为 c 执行完之后就从调用栈移除了。

trace     at b (repl:4:9)     at a (repl:3:1)     at repl:1:1  // <-- 从这行往下的内容可以忽略,因为这些都是 node 内部的东西     at realruninthiscontextscript (vm.js:22:35)     at siginthandlerswrap (vm.js:98:12)     at contextifyscript.script.runinthiscontext (vm.js:24:12)     at replserver.defaulteval (repl.js:313:29)     at bound (domain.js:280:14)     at replserver.runbound [as eval] (domain.js:293:12)     at replserver.online (repl.js:513:10)

再总结下调用栈的工作机制:调用函数的时候,会被推到调用栈的顶部,而执行完毕之后,就会从调用栈移除。

error 对象及错误处理

当代码中发生错误时,我们通常会抛出一个 error 对象。error 对象可以作为扩展和创建自定义错误类型的原型。error 对象的 prototype 具有以下属性:

  • constructor – 负责该实例的原型构造函数;
  • message – 错误信息;
  • name – 错误的名字;

上面都是标准属性,有些 js 运行环境还提供了标准属性之外的属性,如 node.js、firefox、chrome、edge、ie 10、opera 和 safari 6 中会有 stack 属性,它包含了错误代码的调用栈,接下来我们简称错误堆栈。错误堆栈包含了产生该错误时完整的调用栈信息。如果您想了解更多关于 error 对象的非标准属性,我强烈建议你阅读 mdn 的这篇文章。

抛出错误时,你必须使用 throw 关键字。为了捕获抛出的错误,则必须使用 try catch 语句把可能出错的代码块包起来,catch 的时候可以接收一个参数,该参数就是被抛出的错误。与 java 中类似,js 中也可以在 try catch 语句之后有 finally,不论前面代码是否抛出错误 finally 里面的代码都会执行,这种语言的常见用途有:在 finally 中做些清理的工作。

此外,你可以使用没有 catch 的 try 语句,但是后面必须跟上 finally,这意味着我们可以使用三种不同形式的 try 语句:

  • try … catch
  • try … finally
  • try … catch … finally

try 语句还可以嵌套在 try 语句中,比如:

try {     try {         throw new error('nested error.'); // 这里的错误会被自己紧接着的 catch 捕获     } catch (nestederr) {         console.log('nested catch'); // 这里会运行     } } catch (err) {     console.log('this will not run.');  // 这里不会运行 }

try 语句也可以嵌套在 catch 和 finally 语句中,比如下面的两个例子:

try {     throw new error('first error'); } catch (err) {     console.log('first catch running');     try {         throw new error('second error');     } catch (nestederr) {         console.log('second catch running.');     } }
try {     console.log('the try block is running...'); } finally {     try {         throw new error('error inside finally.');     } catch (err) {         console.log('caught an error inside the finally block.');     } }

同样需要注意的是,你可以抛出不是 error 对象的任意值。这可能看起来很酷,但在工程上却是强烈不建议的做法。如果恰巧你需要处理错误的调用栈信息和其他有意义的元数据,抛出非 error 对象的错误会让你的处境很尴尬。

假如我们有如下的代码:

function runwithoutthrowing(func) {     try {         func();     } catch (e) {         console.log('there was an error, but i will not throw it.');         console.log('the error\'s message was: '   e.message)     } }  function functhatthrowserror() {     throw new typeerror('i am a typeerror.'); }  runwithoutthrowing(functhatthrowserror);

如果 runwithoutthrowing 的调用者传入的函数都能抛出 error 对象,这段代码不会有任何问题,如果他们抛出了字符串那就有问题了,比如:

function runwithoutthrowing(func) {     try {         func();     } catch (e) {         console.log('there was an error, but i will not throw it.');         console.log('the error\'s message was: '   e.message)     } }  function functhatthrowsstring() {     throw 'i am a string.'; }  runwithoutthrowing(functhatthrowsstring);

这段代码运行时,runwithoutthrowing 中的第 2 次 console.log 会抛出错误,因为 e.message 是未定义的。这些看起来似乎没什么大不了的,但如果你的代码需要使用 error 对象的某些特定属性,那么你就需要做很多额外的工作来确保一切正常。如果你抛出的值不是 error 对象,你就不会拿到错误相关的重要信息,比如 stack,虽然这个属性在部分 js 运行环境中才会有。

error 对象也可以向其他对象那样使用,你可以不用抛出错误,而只是把错误传递出去,node.js 中的错误优先回调就是这种做法的典型范例,比如 node.js 中的 fs.readdir 函数:

const fs = require('fs');  fs.readdir('/example/i-do-not-exist', function callback(err, dirs) {     if (err) {         // `readdir` will throw an error because that directory does not exist         // we will now be able to use the error object passed by it in our callback function         console.log('error message: '   err.message);         console.log('see? we can use errors without using try statements.');     } else {         console.log(dirs);     } });

此外,error 对象还可以用于 promise.reject 的时候,这样可以更容易的处理 promise 失败,比如下面的例子:

new promise(function(resolve, reject) {     reject(new error('the promise was rejected.')); }).then(function() {     console.log('i am an error.'); }).catch(function(err) {     if (err instanceof error) {         console.log('the promise was rejected with an error.');         console.log('error message: '   err.message);     } });

错误堆栈的裁剪

node.js 才支持这个特性,通过 error.capturestacktrace 来实现,error.capturestacktrace 接收一个 object 作为第 1 个参数,以及可选的 function 作为第 2 个参数。其作用是捕获当前的调用栈并对其进行裁剪,捕获到的调用栈会记录在第 1 个参数的 stack 属性上,裁剪的参照点是第 2 个参数,也就是说,此函数之前的调用会被记录到调用栈上面,而之后的不会。

让我们用代码来说明,首先,把当前的调用栈捕获并放到 myobj 上:

const myobj = {};  function c() { }  function b() {     // 把当前调用栈写到 myobj 上     error.capturestacktrace(myobj);     c(); }  function a() {     b(); }  // 调用函数 a a();  // 打印 myobj.stack console.log(myobj.stack);  // 输出会是这样 //    at b (repl:3:7) <-- since it was called inside b, the b call is the last entry in the stack //    at a (repl:2:1) //    at repl:1:1 <-- node internals below this line //    at realruninthiscontextscript (vm.js:22:35) //    at siginthandlerswrap (vm.js:98:12) //    at contextifyscript.script.runinthiscontext (vm.js:24:12) //    at replserver.defaulteval (repl.js:313:29) //    at bound (domain.js:280:14) //    at replserver.runbound [as eval] (domain.js:293:12) //    at replserver.online (repl.js:513:10)

上面的调用栈中只有 a -> b,因为我们在 b 调用 c 之前就捕获了调用栈。现在对上面的代码稍作修改,然后看看会发生什么:

const myobj = {};  function d() {     // 我们把当前调用栈存储到 myobj 上,但是会去掉 b 和 b 之后的部分     error.capturestacktrace(myobj, b); }  function c() {     d(); }  function b() {     c(); }  function a() {     b(); }  // 执行代码 a();  // 打印 myobj.stack console.log(myobj.stack);  // 输出如下 //    at a (repl:2:1) <-- as you can see here we only get frames before `b` was called //    at repl:1:1 <-- node internals below this line //    at realruninthiscontextscript (vm.js:22:35) //    at siginthandlerswrap (vm.js:98:12) //    at contextifyscript.script.runinthiscontext (vm.js:24:12) //    at replserver.defaulteval (repl.js:313:29) //    at bound (domain.js:280:14) //    at replserver.runbound [as eval] (domain.js:293:12) //    at replserver.online (repl.js:513:10) //    at emitone (events.js:101:20)

在这段代码里面,因为我们在调用 error.capturestacktrace 的时候传入了 b,这样 b 之后的调用栈都会被隐藏。

现在你可能会问,知道这些到底有啥用?如果你想对用户隐藏跟他业务无关的错误堆栈(比如某个库的内部实现)就可以试用这个技巧。

总结

通过本文的描述,相信你对 js 中的调用栈、error 对象、错误堆栈有了清晰的认识,在遇到错误的时候不在慌乱。如果对文中的内容有任何疑问,欢迎在下面评论。

one more thing

想知道这个人以后还会写什么?请关注本专栏,或者关注作者本人,也可以扫描文章封面中的二维码订阅前端周刊微信号。

脚注:本文是在 http://lucasfcosta.com/2017/02/17/javascript-errors-and-stack-traces.html 的基础上做了大量修改而成,英文好的同学可以直接读原文,因为考虑到最后那部分离多数工程师实际工作较远,就没有翻译。

展开全文
内容来源于互联网和用户投稿,文章中一旦含有米乐app官网登录的联系方式务必识别真假,本站仅做信息展示不承担任何相关责任,如有侵权或涉及法律问题请联系米乐app官网登录删除

最新文章

网站地图