在node.js中使用http.request时出错



这是我的一小段代码:

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('datan');
req.write('datan');
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)

有什么解决方案吗?谢谢

如果您只是试图从该URL获取HTML,则不需要req.write语句。正是这些语句导致了您的错误。当您向服务器写入数据时,您可以使用req.write,例如,如果您正在执行POST。

在声明req 之后,您还应该添加一个错误处理程序

req.on('error', function(e) {
  console.log('problem with request: ' + e.message);
});

相关内容

  • 没有找到相关文章

最新更新