我正在尝试了解如何使用Node.js应用程序中的远程长轮询资源。我尝试使用“请求”包,但连接保持打开状态,但无法读取来自远程资源的数据。
有人可以解释我该怎么做吗?
谢谢。
答案 0 :(得分:1)
最后找到了解决方法:
const https = require('https');
const Agent = require('agentkeepalive').HttpsAgent;
const keepaliveAgent = new Agent({
maxSockets: 100,
maxFreeSockets: 10,
freeSocketTimeout: 30000, // free socket keepalive for 30 seconds
});
const options = {
host: 'server',
port: port,
auth: 'username:password',
path: '/path',
method: 'POST',
agent: keepaliveAgent,
headers: {
'Accept': 'application/json'
}
};
makeRequest();
function makeRequest(){
const req = https.request(options, 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);
});
});
req.on('error', e => {
console.log('problem with request: ' + e.message);
makeRequest();
});
req.end();
}
setInterval(() => {
if (keepaliveAgent.statusChanged) {
if(keepaliveAgent.getCurrentStatus().resetStatus != 0){
keepaliveAgent.setCurrentStatus();
makeRequest();
}
}
}, 2000);
需要的包裹:
自定义修改: 每次服务器端点重新启动时,连接都会关闭套接字,并且不会重新连接。为了解决这个问题,我修改了node_modules / agentkeepalive / lib / agent.js并添加了一个名为resetStatus的新值和一个新函数setCurrentStatus,因此,每次连接关闭时,计数都会重置为0,然后再次调用makeRequest函数。
感谢您的时间!