如何将 JavaScript 迭代器转换为数组?
在 JavaScript 中,迭代器是一个元素集合,我们可以通过它进行迭代并每次迭代访问单个元素。Set、Map 或对象在 JavaScript 中都是迭代器,我们不能像访问数组那样使用索引来访问迭代器的元素。
因此,我们首先需要将迭代器转换为数组。这里,我们将使用不同的方法,例如 Array.from() 等,将迭代器转换为数组。
使用 for...of 循环
for...of 循环遍历迭代器(如 Set 和 Map)中的每个元素。在 for...of 循环内部,我们可以访问元素并将其添加到数组中,并且可以使用 push() 方法将元素添加到数组中。
语法
用户可以按照以下语法使用 for...of 循环将迭代器转换为数组。
for (let element of iterator) { array.push(element); }
在上述语法中,我们在 for...of 循环中访问迭代器的元素并将其推送到数组中。
示例 1
在下面的示例中,我们创建了 test_array 并用一些数字对其进行了初始化。之后,我们使用 Symbol.iterator() 将数组转换为迭代器。
接下来,我们使用 for...of 循环遍历迭代器。我们逐个访问迭代器中的所有元素并将其推送到数组中。一旦 for 循环的所有迭代都完成,我们就可以获得迭代器的完整数组。
<html> <body> <h2>Using the <i> for loop </i> to transform JavaScript iterator into the array</h2> <div id = "output"> </div> </body> <script> let output = document.getElementById('output'); let test_array = [10, 20, 30, 0, 50, 60, 70]; let iterator = test_array[Symbol.iterator](); let array = []; for (let element of iterator) { array.push(element); output.innerHTML += "Array element is - " + element + "<br>"; } output.innerHTML += "The whole array is - " + array; </script> </html>
使用 Array.from() 方法
Array.from() 方法从迭代器创建一个数组。我们需要将迭代器对象作为 Array.from() 方法的参数传递。它在将迭代器转换为数组后返回一个数组。
语法
用户可以按照以下语法使用 Array.from() 方法将迭代器转换为数组。
let array = Array.from(test_set);
在上述语法中,test_set 是要转换为数组的迭代器。
参数
test_set – 要转换为数组的迭代器。
示例 2
在下面的示例中,我们使用各种元素创建了 Set。之后,我们使用 Array.from() 方法将 Set 转换为数组。在输出中,用户可以看到 Array.from() 方法返回的数组。
<html> <body> <h2>Using the <i> Array.from() method </i> to transform JavaScript iterator into the array.</h2> <div id = "output"> </div> </body> <script> let output = document.getElementById('output'); let test_set = new Set(["Hello", "Hello", "Hi", 10, 10, 20, 30, 40, 40, true, false, true, true]); let array = Array.from(test_set); output.innerHTML += "The array from the test_set is " + array; </script> </html>
使用扩展运算符
扩展运算符也允许我们将迭代器转换为数组,就像 Array.from() 方法一样。它将迭代器中的所有元素复制到新数组中。此外,我们还可以使用它来克隆数组。
语法
用户可以按照以下语法使用扩展运算符将迭代器转换为数组。
let array = [...test_map];
在上述语法中,test_map 是一个迭代器。
示例 3
在下面的示例中,我们创建了具有唯一键和值的 Map。我们可以使用键从 Map 中访问特定值。
我们使用扩展运算符将 test_map 转换为数组。在输出中,用户可以看到 Map 的每个键值对都被添加到数组中。
<html> <body> <h2>Using the <i> Spread operator </i> to transform JavaScript iterator into the array.</h2> <div id = "output"> </div> </body> <script> let output = document.getElementById('output'); var test_map = new Map([["first", true], ["second", false], ["third", false], ["fourth", true]]); let array = [...test_map]; output.innerHTML += "The array from the test_map is " + array; </script> </html>
示例 4
在此示例中,我们将 Set 迭代器转换为数组。new Set() 构造函数用于从数字、布尔值和字符串元素创建 Set。
之后,我们使用扩展运算符将 Set 迭代器转换为数组。
<html> <body> <h2>Using the <i> Spread operator </i> to transform JavaScript iterator into the array.</h2> <div id="output"> </div> </body> <script> let output = document.getElementById('output'); let set = new Set([30, 40, "TypeScript", "JavaScript"]) let array = [...set] output.innerHTML += "The array from the object is " + array; </script> </html>
在本教程中,我们看到了三种将迭代器转换为数组的不同方法。最好的方法是使用扩展运算符,因为它还提供了其他功能,例如克隆数组。