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

时间:2013-02-17 22:45:20

标签: node.js error-handling httprequest parse-error

这是我的一小段代码:

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();

我正在尝试从该网址获取所有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)

任何解决方案? 感谢;

1 个答案:

答案 0 :(得分:2)

如果您只是尝试从该URL获取HTML,则不需要req.write语句。这些是导致您的错误的陈述。在将数据写入服务器时使用req.write,E.G。如果您正在进行POST。

在声明你的req

后,你还应该添加一个错误处理程序
req.on('error', function(e) {
  console.log('problem with request: ' + e.message);
});