aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/api/urlsearchparams/foreach/index.html
blob: 2d7d76958d213488afb93637c40d7b88eebc22b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
---
title: URLSearchParams.forEach()
slug: Web/API/URLSearchParams/forEach
translation_of: Web/API/URLSearchParams/forEach
---
<div>{{APIRef("URL API")}}</div>



<p>   URLSearchParams的实例对象上的方法forEach允许通过回调函数来遍历URLSearchParams实例对象上的键值对</p>

<p>{{availableinworkers}}</p>

<h2 id="语法">语法</h2>

<pre class="syntaxbox">searchParams.forEach(callback(value,key,searchParams));</pre>

<h3 id="参数">参数</h3>

<dl>
 <dt>回调函数</dt>
 <dd>    该回调函数可以接收到3个参数value,key,searchParams,我们可以在回调函数中对接收到的参数进行处理。而三个参数的含义如下:</dd>
 <dt>    1.  value</dt>
 <dd>     当前遍历到的键值</dd>
 <dt>    2.  key</dt>
 <dd>     当前遍历到的键名</dd>
 <dt>    3.  searchParams</dt>
 <dd>     当前调用forEach方法的实例对象</dd>
</dl>

<h3 id="返回值">返回值</h3>

<p>    空</p>

<h2 id="例子">例子</h2>

<pre class="brush: js;highlight:[5]">// 创建URLSearchParams对象的实例对象,用于测试
var searchParams = new URLSearchParams("key1=value1&amp;key2=value2");

let returnValue = searchParams.forEach(function(value, key,searchParams) {
     // 打印值
     console.log(value, key,searchParams);
});

// 输出返回值
console.log(returnValue)
</pre>

<p>结果是:</p>

<pre>value1 key1 当前调用forEach方法的实例对象(也就是searchParams)
value2 key2 当前调用forEach方法的实例对象(也就是searchParams)
undefined  // 即没有返回值
</pre>

<h2 id="Specifications">Specifications</h2>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col">Specification</th>
   <th scope="col">Status</th>
   <th scope="col">Comment</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <td>{{SpecName('URL', '#interface-urlsearchparams', "forEach() (see \"iterable\")")}}</td>
   <td>{{Spec2('URL')}}</td>
   <td>Initial definition.</td>
  </tr>
 </tbody>
</table>

<h2 id="Browser_compatibility">Browser compatibility</h2>

<div>


<p>{{Compat("api.URLSearchParams.forEach")}}</p>
</div>

<h2 id="See_also">See also</h2>

<ul>
 <li>The {{domxref("URL")}} interface.</li>
</ul>