- Node.js教程
- Node.js - 教程
- Node.js - 简介
- Node.js - 环境设置
- Node.js - 首次申请
- Node.js - REPL 终端
- Node.js - 命令行选项
- Node.js - 包管理器 (NPM)
- Node.js - 回调概念
- Node.js - 上传文件
- Node.js - 发送电子邮件
- Node.js - 活动
- Node.js - 事件循环
- Node.js - 事件发射器
- Node.js - 调试器
- Node.js - 全局对象
- Node.js - 控制台
- Node.js - 流程
- Node.js - 扩展应用程序
- Node.js - 包装
- Node.js - Express 框架
- Node.js - RESTful API
- Node.js - 缓冲器
- Node.js - Streams
- Node.js - 文件系统
- Node.js MySQL
- Node.js - MySQL 快速入门
- Node.js - MySQL创建数据库
- Node.js - MySQL创建表
- Node.js - MySQL Insert Into
- Node.js - MySQL Select From
- Node.js - MySQL Where 子句
- Node.js - MySQL Order By
- Node.js - MySQL Delete
- Node.js - MySQL Update
- Node.js - MySQL Join
- Node.js MongoDB
- Node.js - MongoDB 快速入门
- Node.js - MongoDB 创建数据库
- Node.js - MongoDB 创建集合
- Node.js - MongoDB Insert
- Node.js - MongoDB Find
- Node.js - MongoDB 查询
- Node.js - MongoDB 排序
- Node.js - MongoDB Delete
- Node.js - MongoDB Update
- Node.js - MongoDB Limit
- Node.js - MongoDB Join
- Node.js模块
- Node.js - 模块
- Node.js - 内置模块
- Node.js - utility 模块
- Node.js - Web 模块
NodeJS - urlSearchParams.values() 方法
URLSearchParams 类的 NodeJS urlSearchParams.values() 方法返回一个 ES6 迭代器,该迭代器允许迭代每个名称-值对的所有值。
让我们考虑一个 YouTube URL ('https://www.youtube.com/watch?z=HY4&z=NJ7),其中 '?' 后面的部分称为查询段。在此查询中,(z) 是名称,(HY4) 是值。它共同构成了一个名称-值对。
查询字符串中有两个名称/值对。因此,如果我们将查询字符串分配给 values() 方法,它会在每个名称-值对的值上返回一个 ES6 迭代器。
URLSearchParams API 提供了一些方法,这些方法提供了读取和写入 URL 查询的访问权限。此类在全局对象上也可用。
语法
以下是 NodeJS URLSearchParams.values() 方法的语法
URLSearchParams.values()
参数
此方法不接受任何参数。
返回值
此方法在每个名称/值对的值上返回一个 ES6 迭代器。
以下示例演示了 NodeJS URLSearchParams.values() 方法的用法:
例如果输入 URL 字符串包含查询段,则 NodeJS urlSearchParams.values() 方法将返回一个迭代器,该迭代器将覆盖查询字符串中名称-值对的所有值。
在以下示例中,我们尝试从查询字符串的名称-值对中获取所有值。
const url = require('node:url');
const MyUrl = new URL('https://www.qikepu.com?1=one&3=three&6=six&9=nine');
console.log("URL: ", MyUrl.href);
const Params = new URLSearchParams('1=one&3=three&6=six&9=nine');
console.log("Query string: " + Params);
console.log('All the values in the query string are: ');
for (const value of Params.values()) {
console.log(value);
}
输出
正如我们在下面的输出中看到的,NodeJS values() 方法返回名称-值对中的所有值。
URL: https://www.qikepu.com/?1=one&3=three&6=six&9=nine
Query string: 1=one&3=three&6=six&9=nine
All the values in the query string are:
one
three
six
nine
Query string: 1=one&3=three&6=six&9=nine
All the values in the query string are:
one
three
six
nine
例
在以下示例中,我们将一些名称/值对追加到输入查询字符串中。然后,我们尝试从名称-值对中获取值。
const url = require('node:url');
const Params = new URLSearchParams('1=one&3=three&6=six&9=nine');
console.log("Query string: " + Params);
Params.append(12, 'twelve');
Params.append(15, 'fifteen');
console.log('All the values in the query string are: ');
for (const value of Params.values()) {
console.log(value);
}
输出
在执行上述程序时,它将生成以下输出
Query string: 1=one&3=three&6=six&9=nine
All the values in the query string are:
one
three
six
nine
twelve
fifteen
All the values in the query string are:
one
three
six
nine
twelve
fifteen