加载中...

错误传播


如果代码发生了错误,又没有被try ... catch捕获,那么,程序执行流程会跳转到哪呢?

  1. function getLength(s) {
  2. return s.length;
  3. }
  4. function printLength() {
  5. console.log(getLength('abc')); // 3
  6. console.log(getLength(null)); // Error!
  7. }
  8. printLength();

如果在一个函数内部发生了错误,它自身没有捕获,错误就会被抛到外层调用函数,如果外层函数也没有捕获,该错误会一直沿着函数调用链向上抛出,直到被JavaScript引擎捕获,代码终止执行。

所以,我们不必在每一个函数内部捕获错误,只需要在合适的地方来个统一捕获,一网打尽:

  1. <script src="http://code.jquery.com/jquery-1.11.3.min.js"></script>
  2. <script>
  3. 'use strict';
  4. function main(s) {
  5.     console.log('BEGIN main()');
  6.     try {
  7.         foo(s);
  8.     } catch (e) {
  9.         alert('出错了:' + e);
  10.     }
  11.     console.log('END main()');
  12. }
  13.  
  14. function foo(s) {
  15.     console.log('BEGIN foo()');
  16.     bar(s);
  17.     console.log('END foo()');
  18. }
  19.  
  20. function bar(s) {
  21.     console.log('BEGIN bar()');
  22.     console.log('length = ' + s.length);
  23.     console.log('END bar()');
  24. }
  25.  
  26. main(null);
  27. </script>
运行一下

bar()函数传入参数null时,代码会报错,错误会向上抛给调用方foo()函数,foo()函数没有try ... catch语句,所以错误继续向上抛给调用方main()函数,main()函数有try ... catch语句,所以错误最终在main()函数被处理了。

至于在哪些地方捕获错误比较合适,需要视情况而定。


还没有评论.