这是我发送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.
感谢答案的人。
答案 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();