urlSearchParams.entries()
- 返回:<Iterator>
返回一个 ES6 Iterator,用于迭代查询中的每个名称-值对。迭代器的每一项都是一个 JavaScript Array。Array 的第一项是 name,第二项是 value。
【Returns an ES6 Iterator over each of the name-value pairs in the query.
Each item of the iterator is a JavaScript Array. The first item of the Array
is the name, the second item of the Array is the value.】
urlSearchParams[Symbol.iterator]() 的别名。
【Alias for urlSearchParams[Symbol.iterator]().】