urlSearchParams.keys() 方法是 url 模塊中 URLSearchParams 類的內置應用程序編程接口,用於獲取僅包含 URL 搜索參數對象的所有名稱條目的迭代器對象。
用法:
const urlSearchParams.keys()
參數:該方法不接受任何參數。
返回值:此方法返回僅包含 URL 搜索參數對象的所有名稱條目的迭代器對象。
下麵的程序演示了 Node.js 中 urlSearchParams.keys() 方法的使用:
示例 1: 文件名:app.js
// Node.js program to demonstrate the
// URLSearchParams.keys() method
// Importing the 'url' module
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 all the name entries only
// by using keys() API
const iterator = params.keys();
// Display result for each name entry
console.log("list of all the keys");
for (const [name] of iterator) {
console.log(name);
}
使用以下命令運行 app.js 文件:
node app.js
輸出:
list of all the keys A B C
示例 2:
文件名:app.js
// Node.js program to demonstrate the
// URLSearchParams.keys() 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('G', '1');
params.append('F', '2');
params.append('G', '3');
// Getting all the name entries only
// by using keys() api
const iterator = params.keys();
// Display result for each name entry
console.log("list of all the keys");
for (const [name] of iterator) {
console.log(name);
}
使用以下命令運行 app.js 文件:
node app.js
輸出:
list of all the keys G F G
注意:上述程序無法在在線 JavaScript 和腳本編輯器上運行。
參考: https://nodejs.org/dist/latest-v14.x/docs/api/url.html#url_urlsearchparams_keys
相關用法
- Node.js urlSearchParams.values()用法及代碼示例
- Node.js urlSearchParams.toString()用法及代碼示例
- Node.js urlSearchParams.get()用法及代碼示例
- 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.keys() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。