我有以下处理http请求的代码。
request.connection.addListener('close', function(had_error) { console.log(had_error); ...
我想打印更多错误信息,但它只打印“true”。
P粉6626142132024-04-04 08:08:06
使用错误事件来跟踪错误。它返回包含完整详细信息的 Error 对象。
request.connection.addListener('error', function(error) { console.log(error.reason|| error.message); });
由于连接已从 v15 开始被弃用,如果您使用的是最新版本,也可以使用它
request.on('error',function(error){ console.log(error.reason|| error.message); });