El url.host es una interfaz de programación de aplicaciones incorporada de clase URL con un módulo de url que se utiliza para obtener y configurar la parte del host de la URL.
Sintaxis:
const url.host
Valor de retorno: obtiene y establece la parte del host de la URL.
Los siguientes programas ilustran el uso del Método url.host :
Ejemplo 1:
javascript
// node program to demonstrate the // url.host API as Setter //importing the module 'url' const http = require('url'); // creating and initializing myURL const myURL = new URL('https://example.com:80/foo#ram'); // Display href value of myURL before change console.log("Before Change"); console.log(myURL.href); // assigning host portion // using host console.log(); myURL.host = 'example.com:82'; // Display href value of myURL after change console.log("After Change"); console.log(myURL.href);
Salida :
Before Change https://example.com:80/foo#ram After Change https://example.com:82/foo#ram
Ejemplo 2:
javascript
// node program to demonstrate the // url.host API as Getter //importing the module 'url' const http = require('url'); // creating and initializing myURL const myURL = new URL('https://example.org:82/foo#ram'); // getting the host portion // using host const host = myURL.host; // Display hash value console.log(host);
Producción:
example.org:82
NOTA : El programa anterior se compilará y ejecutará utilizando el comando node myapp.js .
Referencia:
https://nodejs.org/dist/latest-v10.x/docs/api/url.html#url_url_host
Publicación traducida automáticamente
Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA