gpt4 book ai didi

javascript - 使用嵌套数组访问复杂的 Json 文件

转载 作者:行者123 更新时间:2023-11-30 20:17:20 26 4
gpt4 key购买 nike

我在获取特定数组时遇到问题;

my json file

  • ATM/现金(每个 id 来自 array(11) )

           -id:2998390918
    -id:2998390990
    .
    .
    .
    -id:2999363236
  • 账户转账(每个id来自array(30))

           -id:2998390928
    -id:2998390929
    .
    .
    .
    -id:2998390979

    . . .

最佳答案

遍历对象并打印

var o = {
"Healthcare/Medical":
Array(167),

"Personal Care":
Array(88),

Miscellaneous_Services:Array(340),

General_Merchandise:Array(110),

Home_Improvement:Array(292)
};

Object.keys(o).forEach((k)=>{
console.log(k);
o[k].forEach((e)=>{
console.log(`-id[${e.id}]`);
});
});

关于javascript - 使用嵌套数组访问复杂的 Json 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51803776/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com