El url.pathname es una interfaz de programación de aplicaciones incorporada de clase URL con un módulo de url que se usa para obtener y establecer la parte del nombre de ruta de la URL.
Sintaxis:
const url.pathname
Valor devuelto: Obtiene y establece la parte del nombre de ruta de la URL.
Los siguientes programas ilustran el uso del método url.pathname :
Ejemplo 1:
Javascript
// node program to demonstrate the // url.pathname 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 the href // value of myURL before change console.log("Before Change"); console.log(myURL.href); // assigning pathname portion // using pathname API console.log(); myURL.pathname = '/abcdef'; // 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.pathname API as Getter //importing the module 'url' const http = require('url'); // creating and initializing myURL const myURL = new URL('https://example.org/123abc#ram'); // getting the pathname portion // using pathname const pathname = myURL.pathname; // Display pathname value console.log("pathname is : " + pathname);
Producción:
NOTA: El programa anterior se compilará y ejecutará mediante el comando node myapp.js en Node.
Referencia:
https://nodejs.org/api/url.html#url_url_pathname
Publicación traducida automáticamente
Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA