我在通过 Node.js 加载页面时遇到了很大的麻烦。这是我的 Node.js 应用程序的代码,请注意,如果我尝试加载其他资源(如 www.google.com),它会起作用,因此问题特定于域名 www.egopay.com:
var http = require('http');
var options = {
hostname: 'www.egopay.com',
port: 80,
path: '/',
method: 'GET'
};
var req = http.request(options, function(res) {
console.log('STATUS: ' + res.statusCode);
console.log('HEADERS: ' + JSON.stringify(res.headers));
res.setEncoding('utf8');
res.on('data', function (chunk) {
console.log('BODY: ' + chunk);
});
});
req.on('error', function(e) {
console.log('problem with request: ' + e.message);
});
// write data to request body
req.write('data\n');
req.write('data\n');
req.end();
使用 cURL 它可以工作,Node.js 不会。
请求后大约一分钟出现此错误:
problem with request: read ECONNRESET