urlSearchParams.get() 方法是 url 模块中 URLSearchParams 类的内置应用程序编程接口,用于获取 URL 搜索参数对象中存在的特定名称条目的值。
用法:
const urlSearchParams.get( name )
参数:该方法将名称作为参数。
返回值:此方法返回 url 搜索参数对象中存在的特定名称条目的值。
下面的程序演示了 Node.js 中 urlSearchParams.get() 方法的使用:
示例 1: 文件名: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);
使用以下命令运行 app.js 文件:
node app.js
输出:
value for A is Book
示例 2: 文件名: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);
使用以下命令运行 app.js 文件:
node app.js
输出:
value for a is null
参考: https://nodejs.org/dist/latest-v14.x/docs/api/url.html#url_urlsearchparams_get_name
相关用法
- Node.js urlSearchParams.values()用法及代码示例
- Node.js urlSearchParams.toString()用法及代码示例
- Node.js urlSearchParams.keys()用法及代码示例
- Node.js urlObject.auth()用法及代码示例
- Node.js urlObject.slashes用法及代码示例
- Node.js urlObject.href用法及代码示例
- Node.js urlObject.query用法及代码示例
- Node.js url.parse(urlString, parseQueryString, slashesDenoteHost)用法及代码示例
- Node.js urlObject.hostname用法及代码示例
- Node.js urlObject.pathname用法及代码示例
- Node.js urlObject.hash用法及代码示例
- Node.js urlObject.port用法及代码示例
- Node.js urlObject.host用法及代码示例
- Node.js urlObject.search用法及代码示例
- Node.js urlObject.protocol用法及代码示例
- Node.js urlObject.auth用法及代码示例
- Node.js url.toString()用法及代码示例
- Node.js url.domainToUnicode()用法及代码示例
- Node.js urlObject.path用法及代码示例
- Node.js url.domainToASCII(domain)用法及代码示例
- Node.js url.domainToUnicode(domain)用法及代码示例
- Node.js url.fileURLToPath(url)用法及代码示例
- Node.js url.format(URL[, options])用法及代码示例
- Node.js url.pathToFileURL(path)用法及代码示例
- Node.js url.urlToHttpOptions(url)用法及代码示例
注:本文由纯净天空筛选整理自RohitPrasad3大神的英文原创作品 Node.js urlSearchParams.get() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。