gpt4 book ai didi

javascript - 访问 JSON 值持有者的名称

转载 作者:行者123 更新时间:2023-12-01 02:35:38 25 4
gpt4 key购买 nike

我有以下 JSON 数据:

{
"pages": {
"22989": {
"title": "Paris",
"links": [{
"ns": 0,
"title": "11th arrondissement of Paris"
}]
}
}
}

如何访问“pages”内的字符串“22989”? (我想要变量的名称,而不是它的。)

最佳答案

var object = {"pages":{"22989":{"title":"Paris","links":[{"ns":0,"title":"11th arrondissement of Paris"}]}}}

for(key in object.pages) {
alert(key); // "22989"
}

关于javascript - 访问 JSON 值持有者的名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6848435/

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