基本上,为什么不抓住这个例外?
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"); }
有人建议用事件发射器或回调(错误)处理这些错误(有错误的回调,数据签名不是我习惯的)
什么是最好的方法呢?