基本上,为什么这个异常没有被捕获?
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");
}
有些人建议这些错误需要用事件发射器或回调(错误)来处理(有错误的回调,数据签名不是我习惯的东西)
最好的方法是什么?