在节点J中结束HTTP请求

时间:2014-02-07 05:18:42

标签: javascript node.js http request

这是我发送http请求的代码。我的请求没有结束有什么不对吗?

var req = http.request(options, function(res) {
        res.setEncoding('utf8');
        res.on('data', function(chunk) {
            console.log('Response: ' + chunk);
        });
    });

    req.write(uid);
    req.end();         //i think this line will end the requset, but not.

感谢答案的人。

1 个答案:

答案 0 :(得分:0)

我发现我错过了以res.end();

结束回复
    var req = http.request(options, function(res) {
        res.setEncoding('utf8');
        res.on('data', function(chunk) {
        console.log('Response: ' + chunk);
        });
    });

    req.write(uid);
    req.end();
    res.end();