10

基本上,为什么这个异常没有被捕获?

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");
}

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

最好的方法是什么?

4

3 回答 3

13

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

如果错误回调函数中出现错误,请执行您想做的任何事情。

于 2012-05-30T19:53:04.843 回答
5

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

如果你有兴趣,我在这里写了一个捕获异步异常的小函数: 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");
});
于 2013-01-31T22:21:12.217 回答
0

Javascript 不仅有函数作用域 try-catch 也是块作用域。这就是原因。

于 2015-12-24T13:28:34.807 回答