La url.password es una interfaz de programación de aplicaciones incorporada de clase URL con un módulo de url que se utiliza para obtener y establecer la parte de la contraseña de la URL.
Sintaxis:
const url.password
Valor de retorno: obtiene y establece la parte de la contraseña de la URL.
Los siguientes programas ilustran el uso del método url.password :
Ejemplo 1:
javascript
// node program to demonstrate the // url.password API as Setter //importing the module 'url' const http = require('url'); // creating and initializing myURL const myURL = new URL('https://pqr:abc@example.com'); // Display password // value of myURL before change console.log("Before Change"); console.log(myURL.password); // assigning password portion // using password API console.log(); // Changing the myUrl.password for the above URL myURL.password = '123'; // Display the changed password // value of myURL after change console.log("After Change"); console.log(myURL.href);
Salida :
Ejemplo 2:
javascript
// node program to demonstrate the // url.password API as Getter //importing the module 'url' const http = require('url'); // creating and initializing myURL const myURL = new URL('https://example.org/foo#ram'); myURL.password = '1234' // getting the password portion // using password const password = myURL.password; // Display hostname value console.log("password is : "+password); console.log(myURL.href);
Producción:
NOTA: El programa anterior se compilará y ejecutará mediante el comando myapp.js en Node.
Referencia:
https://nodejs.org/api/url.html#url_url_password
Publicación traducida automáticamente
Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA