как отправить ответ в браузер fromm http.request в node.js? - PullRequest
2 голосов
/ 30 августа 2011

Я использую пример кода из nodejs.org и пытаюсь отправить ответ в браузер.

var http = require("http");
var port = 8001;
http.createServer().listen(port);
var options = {
  host: "xxx",
  port: 5984,
  //path: "/_all_dbs",
  path: "xxxxx",
  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);
      var buffer = "";
      buffer += chunk;
      var parsedData = JSON.parse(buffer);
      console.log(parsedData);
      console.log("Name of the contact "+parsedData.name);
  });
});

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

req.write ( "привет"); req.end ();

Но req.write ("hello") просто не выводит строку в браузер? Разве это не правильный путь? Может кто-нибудь также сказать мне, как вывести ответ на HTML в папке представлений, чтобы я мог заполнить ответ на статический HTML.

1 Ответ

2 голосов
/ 30 августа 2011

Попробуйте это:

var http = require('http');

var options = {
  host: "127.0.0.1",
  port: 5984,
  path: "/_all_dbs",
  method: "GET"
};

http.createServer(function(req,res){
    var rq = http.request(options, function(rs) {
        rs.on('data', function (chunk) {
            res.write(chunk);
        });
        rs.on('end', function () {
            res.end();
        });
    });
    rq.end();
}).listen(8001);

Edit:

Этот скрипт узла сохраняет выходные данные в файл:

var http = require('http');
var fs=require('fs');

var options = {
  host: "127.0.0.1",
  port: 5984,
  path: "/_all_dbs",
  method: "GET"
};
var buffer="";
var rq = http.request(options, function(rs) {
    rs.on('data', function (chunk) {
        buffer+=chunk;
    });
    rs.on('end', function () {
        fs.writeFile('/path/to/viewsfolder/your.html',buffer,function(err){
            if (err) throw err;
            console.log('It\'s saved!');            
        });
    });
});
rq.end();
...