API de URL.href de Node.js

El url.href es una interfaz de programación de aplicaciones incorporada de clase URL en el módulo url que obtiene y establece la URL serializada. Obtener el valor de la propiedad href es equivalente a llamar al método url.toString() . Establecer el valor de esta propiedad en un nuevo valor es equivalente a crear un nuevo objeto de URL utilizando una nueva URL (valor). Se modificará cada una de las propiedades del objeto URL.
 

Sintaxis:  

const url.href 

Valor devuelto: Obtiene y establece la URL serializada.
Los siguientes programas ilustran el uso del Método url.href :
Ejemplo 1:  

javascript

// node program to demonstrate the 
// url.href 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 serialized URL
// using href
console.log();
myURL.href = 'https://example.com/bar';
   
// Display href value of myURL after change
console.log("After Change");
console.log(myURL.href);

Salida
 

Ejemplo 2: 

javascript

// node program to demonstrate the 
// url.href API as Getter 
  
//importing the module 'url'
const http = require('url');
  
// creating and initializing myURL
const myURL = new URL('https://example.org/foo#ram');
  
// getting the serialized URL
// using href
const href = myURL.href;
  
// Display hostname value 
console.log(href);

Producción: 
 

Referencia:  
https://nodejs.org/api/url.html#url_url_href

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 *