中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

json數組循環取值的方法是什么

小億
624
2024-02-23 12:19:27
欄目: 編程語言

可以通過以下方法循環遍歷JSON數組并取值:

  1. 使用JavaScript的for循環:
const jsonArray = [{"name": "Alice", "age": 30}, {"name": "Bob", "age": 25}];
for (let i = 0; i < jsonArray.length; i++) {
    console.log(jsonArray[i].name);
    console.log(jsonArray[i].age);
}
  1. 使用JavaScript的forEach方法:
const jsonArray = [{"name": "Alice", "age": 30}, {"name": "Bob", "age": 25}];
jsonArray.forEach(item => {
    console.log(item.name);
    console.log(item.age);
});
  1. 使用ES6的for…of循環:
const jsonArray = [{"name": "Alice", "age": 30}, {"name": "Bob", "age": 25}];
for (const item of jsonArray) {
    console.log(item.name);
    console.log(item.age);
}

這些方法可以用來循環遍歷JSON數組并取出需要的值。

0
明水县| 高密市| 靖江市| 甘德县| 历史| 六盘水市| 陆川县| 利辛县| 屯门区| 九江县| 保山市| 台北市| 鄯善县| 德化县| 宣汉县| 苏尼特右旗| 施甸县| 县级市| 府谷县| 辉南县| 平乐县| 即墨市| 广丰县| 安吉县| 阿荣旗| 秀山| 察雅县| 古丈县| 河池市| 扶沟县| 凌源市| 鄂温| 正阳县| 当涂县| 富川| 常宁市| 白城市| 扎囊县| 穆棱市| 邹城市| 凤山县|