这是我的一小段代码:
var options = {
host: 'www.cuantocabron.com',
port: 80,
path: '/index.php',
method: 'GET'
};
var http = require('http');
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);
});
});
// write data to request body
req.write('data\n');
req.write('data\n');
req.end();
我正在尝试从该 URL 获取所有 HTML 代码;我第一次运行该代码时,控制台打印了所有 HTML,但在那之后,抛出一个错误,所以我的服务器宕机了。
但是,当我运行它时,控制台会抛出一个错误:
events.js:71
throw arguments[i]; //Unhandled 'error' event
Error: Parse Error
at Socket.socketOnData (http.js:1447:20)
at TCP.onread (net.js:404:27)
有什么解决办法吗?谢谢;