El método urlSearchParams.get() es una interfaz de programación de aplicaciones incorporada de la clase URLSearchParams dentro del módulo url que se utiliza para obtener el valor de una entrada de nombre particular presente en el objeto de parámetros de búsqueda de URL.
Sintaxis:
const urlSearchParams.get( name )
Parámetro: Este método toma el nombre como parámetro.
Valor devuelto: este método devuelve el valor de una entrada de nombre particular presente en el objeto de parámetros de búsqueda de URL.
Los siguientes programas ilustran el uso del método urlSearchParams.get() en Node.js:
Ejemplo 1: Nombre de archivo: app.js
// Node.js program to demonstrate the // URLSearchParams.get() method // Importing the module 'url' const http = require('url'); // Creating and initializing // URLSearchParams object const params = new URLSearchParams(); // Appending value in the object params.append('A', 'Book'); params.append('B', 'Pen'); params.append('C', 'Pencile'); // Getting the value for entry 'A' // by using get() api const value = params.get('A'); // Display the result console.log("value for A is " + value);
Ejecute el archivo app.js con el siguiente comando:
node app.js
Producción:
value for A is Book
Ejemplo 2: Nombre de archivo: app.js
// Node.js program to demonstrate the // URLSearchParams.get() method // Importing the module 'url' const http = require('url'); // Creating and initializing // URLSearchParams object const params = new URLSearchParams(); // Appending value in the object params.append('A', 'Book'); params.append('B', 'Pen'); params.append('C', 'Pencile'); // Getting the value for entry 'A' // by using get() api const value = params.get('a'); // Display the result console.log("value for a is " + value);
Ejecute el archivo app.js con el siguiente comando:
node app.js
Producción:
value for a is null
Referencia: https://nodejs.org/dist/latest-v14.x/docs/api/url.html#url_urlsearchparams_get_name
Publicación traducida automáticamente
Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA