首页 >web前端 >js教程 >如何在 JavaScript 中迭代 JSON 对象数组?

如何在 JavaScript 中迭代 JSON 对象数组?

Susan Sarandon
Susan Sarandon原创
2024-11-28 02:33:09887浏览

How Do I Iterate Through a JSON Array of Objects in JavaScript?

在 JavaScript 中迭代 JSON 结构

使用 JSON 数据时,通常需要迭代其结构来提取或操作数据。在提供的 JSON 结构中:

[
  {
    "id": "10",
    "class": "child-of-9"
  },
  {
    "id": "11",
    "class": "child-of-10"
  }
]

我们可以使用简单的 JavaScript for 循环来迭代数组中的每个对象:

for (var i = 0; i < arr.length; i++) {
  // First, access the current object
  var obj = arr[i];

  // Now, we can iterate over the object's properties
  for (var key in obj) {
    // Obtain the value for the current property
    var value = obj[key];

    // Output the key and value
    document.write(`<br><br> - ${key}: ${value}`);
  }
}

此代码将逐步遍历数组中的每个对象数组,访问其 id 和 class 属性。输出将显示在浏览器中,列出每个属性及其值。

以上是如何在 JavaScript 中迭代 JSON 对象数组?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn