节点 urlSearchParams.keys() 方法
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