Jest prostsza metoda.
Zamiast używać setTimeout lub pracować bezpośrednio z gniazdem,
możemy użyć 'timeout' w 'opcjach' w kliencie używa
Poniżej znajduje się kod serwera i klienta, w 3 częściach.
Moduł i część opcji:
'use strict';
const assert = require('assert');
const http = require('http');
const options = {
host: '127.0.0.1',
port: 3000,
method: 'GET',
path: '/',
timeout: 2000
};
Część serwerowa:
function startServer() {
console.log('startServer');
const server = http.createServer();
server
.listen(options.port, options.host, function () {
console.log('Server listening on http://' + options.host + ':' + options.port);
console.log('');
startClient();
});
}
Część klienta:
function startClient() {
console.log('startClient');
const req = http.request(options);
req.on('close', function () {
console.log("got closed!");
});
req.on('timeout', function () {
console.log("timeout! " + (options.timeout / 1000) + " seconds expired");
req.destroy();
});
req.on('error', function (e) {
if (req.connection.destroyed) {
console.log("got error, req.destroy() was called!");
return;
}
console.log("got error! ", e);
});
req.end();
}
startServer();
Jeśli umieścisz wszystkie powyższe 3 części w jednym pliku „a.js”, a następnie uruchomisz:
node a.js
wtedy wynik będzie:
startServer
Server listening on http:
startClient
timeout! 2 seconds expired
got closed!
got error, req.destroy() was called!
Mam nadzieję, że to pomoże.