gpt4 book ai didi

javascript - JSON——访问字段的字段

转载 作者:行者123 更新时间:2023-11-28 12:38:02 26 4
gpt4 key购买 nike

假设我有:

 A = {

B: {
key : "value1"
},

C: {
key : "value2"
}
..............
}

如何使用循环获取键的值?

我尝试过类似的方法:

for(ob in A)
{
console.log(ob);
console.log(ob.key);
}

但我得到:

B
undefined
C
undefined

最佳答案

ob 保存属性名称,而不是值。

您想要记录 A[ob]A[ob].key

关于javascript - JSON——访问字段的字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15164164/

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