var req = http.request(options, function(res) {
var msg = '';
res.setEncoding('utf8');
res.on('data', function(chunk) {
msg += chunk;
});
res.on('end', function() {
//
});
res.on('error', function() {
});
});
req.write(data);
req.end();
在节点js
中成功完成api调用后,我必须关闭连接答案 0 :(得分:0)
res.on('end', function() { req.end() });
https://nodejs.org/api/http.html#http_request_end_data_encoding_callback