异步javascript中抛出的异常未被捕获

时间:2012-05-30 19:47:21

标签: javascript node.js asynchronous exception-handling

基本上,为什么没有抓住这个例外?

var http = require('http'),
    options = {
      host: 'www.crash-boom-bang-please.com',
      port: 80,
      method: 'GET'
    };

try {
  var req = http.request(options, function(res) {
    res.setEncoding('utf8');
    res.on('data', function (chunk) {
      console.log('BODY: ' + chunk);
    });
  });

  req.on('error', function(e) {
    throw new Error("Oh noes");
  });
  req.end();
} catch(_error) {
  console.log("Caught the error");
}

有些人认为这些错误需要使用事件发射器或回调(错误)处理(使用错误回调,数据签名不是我习惯的)

最好的方法是什么?

3 个答案:

答案 0 :(得分:11)

当您抛出错误时,try {}块已经很久了,因为回调是在try / catch之外异步调用的。所以你无法抓住它。

如果错误回调函数中出现错误,请执行任何操作。

答案 1 :(得分:5)

从节点版本0.8开始,您可以将例外限制为domains。您可以将异常约束到某个域并在该范围内捕获它们

如果您有兴趣,我已经编写了一个小函数来捕获异步异常:Javascript Asynchronous Exception Handling with node.js。我喜欢一些反馈这会让你执行以下操作:

var http = require('http'),
    options = {
      host: 'www.crash-boom-bang-please.com',
      port: 80,
      method: 'GET'
    };

atry(function(){
  var req = http.request(options, function(res) {
    res.setEncoding('utf8');
    res.on('data', function (chunk) {
      console.log('BODY: ' + chunk);
    });
  });

  req.on('error', function(e) {
    throw new Error("Oh noes");
  });
  req.end();
}).catch(function(_error) {
  console.log("Caught the error");
});

答案 2 :(得分:0)

Javascript没有只是功能范围,try-catch也是块范围的。这就是原因。