Método Node.js http.IncomingMessage.complete

El http.IncomingMessage.complete es una interfaz de programación de aplicaciones incorporada de la clase IncomingMessage dentro del módulo http que se utiliza para comprobar si se ha recibido y analizado con éxito un mensaje HTTP completo o no.

Sintaxis:

const message.complete

Parámetros: Este método no acepta ningún argumento como parámetro.

Valor devuelto: este método devuelve verdadero si y solo si se ha recibido y analizado correctamente un mensaje HTTP completo.

Ejemplo 1: Nombre de archivo: index.js

Javascript

// Node.js program to demonstrate the  
// request.complete Method 
    
// Importing http module 
var http = require('http'); 
    
// Setting up PORT 
const PORT = process.env.PORT || 3000; 
    
// Creating http Server 
var httpServer = http.createServer(
  function(request, response){ 
  
  // Checking if message is parsed or not
  // by using request.complete Api
  const value = request.complete;
    
  // Display result
  response.end( "message has been sent : " 
      + value, 'utf8', () => { 
      console.log("displaying the result..."); 
  
      httpServer.close(()=>{
          console.log("server is closed")
      })
  }); 
}); 
    
// Listening to http Server 
httpServer.listen(PORT, () => { 
    console.log("Server is running at port 3000..."); 
});

Producción:

Salida: en consola

Server is running at port 3000...
displaying the result...
displaying the result...
server is closed
server is closed

Ahora ejecute http://localhost:3000/ en el navegador.

message has been sent : false

Ejemplo 2: Nombre de archivo: index.js

Javascript

// Node.js program to demonstrate the  
// request.complete Method 
    
// Importing http module 
var http = require('http'); 
  
// Request and response handler 
const http2Handlers = (request, response) => { 
    
  // Checking if message is parsed or not
  // by using request.complete Api
  const value = request.complete;
    
  // Display result
  response.end( "message has been sent : " 
      + value, 'utf8', () => { 
      console.log("displaying the result..."); 
  
      httpServer.close(()=>{
          console.log("server is closed")
      })
  });
  }; 
    
// Creating http Server 
var httpServer = http.createServer(
    http2Handlers).listen(3000, () => { 
    console.log("Server is running at port 3000..."); 
});

Producción:

Salida : en consola

Server is running at port 3000...
displaying the result...
displaying the result...
server is closed
server is closed

Ahora ejecute http://localhost:3000/ en el navegador.

message has been sent : false

Referencia: https://nodejs.org/dist/latest-v12.x/docs/api/http.html#http_message_complete

Publicación traducida automáticamente

Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *