在node.js中发出HTTP请求并发送数据主体

时间:2013-02-03 01:12:28

标签: javascript node.js http client-server

我目前正在阅读Guillermo Rauchs的“Smashing Node.Js”一书。我陷入了第7章,其中的任务是设置客户端/服务器并通过http连接从客户端向服务器发送字符串。应该从服务器打印字符串。

客户端代码:

var http = require('http'), qs = require('querystring');

function send (theName) {
    http.request({
        host: '127.0.0.1'
        , port: 3000
        , url: '/'
        , method: 'GET'
    }, function (res) {
        res.setEncoding('utf-8');
        res.on('end', function () {
            console.log('\n   \033[090m request complete!\033[39m');
            process.stdout.write('\n   your name:  ');
        })
    }).end(qs.stringify({ name: theName}));
}

process.stdout.write('\n  your name:  ');
process.stdin.resume();
process.stdin.setEncoding('utf-8');
process.stdin.on('data', function (name) {
   send(name.replace('\n', ''));
});

服务器:

var http = require('http');
var qs = require('querystring');

http.createServer(function (req, res) {
    var body = '';
    req.on('data', function (chunk) {
        body += chunk;
    });
    req.on('end', function () {
        res.writeHead(200);
        res.end('Done');
        console.log('\n got name \033[90m' + qs.parse(body).name + '\033[39m\n');
    });

}).listen(3000);

我启动客户端和服务器。客户似乎工作:

mles@se31:~/nodejs/tweet-client$ node client.js 

your name:  mles

   request complete!

your name:  

但是在服务器端,它只显示未定义:

mles@se31:~/nodejs/tweet-client$ node server.js 

got name undefined

根据这本书,这里也应该是一个“mles”。

1 个答案:

答案 0 :(得分:3)

, method: 'GET'

应该是

, method: 'POST'

GET请求没有正文,因此服务器端无需解析任何内容。