--- title: URLSearchParams.entries() slug: Web/API/URLSearchParams/entries tags: - API - Experimental - Method - Reference - URL API - URLSearchParams translation_of: Web/API/URLSearchParams/entries ---
{{APIRef("URL API")}}{{SeeCompatTable}}
URLSearchParams.entries()
方法返回一个{{jsxref("Iteration_protocols",'iterator')}},允许遍历该对象中包含的所有键/值对。每一组键值对都是 {{domxref("USVString")}}对象
注意: 该方法在 Web Workers也是可用的.
searchParams.entries();
返回一个 {{jsxref("Iteration_protocols","iterator")}}.
// 创建一个测试用 URLSearchParams 对象 var searchParams = new URLSearchParams("key1=value1&key2=value2"); // 显示键/值对 for(var pair of searchParams.entries()) { console.log(pair[0]+ ', '+ pair[1]); }
结果如下:
key1, value1 key2, value2
{{Compat("api.URLSearchParams.entries")}}