gpt4 book ai didi

javascript - 使用 JavaScript 对象表示法访问 json 值

转载 作者:行者123 更新时间:2023-11-28 13:57:36 26 4
gpt4 key购买 nike

我无法访问 json 值

{"phone": [
{
"@attributes": {
"type": "cell",
"ext": ""
}
}, "(123) 456 7890", {
"@attributes": {
"type": "work",
"ext": ""
}
}
]}

使用以下 JavaScript:psudo

for each phone line ...

console.log(["@attributes"].type);
console.log(this);
console.log(["@attributes"].ext);

... end for

我期望以下输出:

cell
work (123) 456 7890

最佳答案

实际上你的json结构并不完美,所以这里是你想要的输出的解决方案

var json = {"phone": [
{
"@attributes": {
"type": "cell",
"ext": ""
}
}, "(123) 456 7890", {
"@attributes": {
"type": "work",
"ext": ""
}
}
]};
console.log(json['phone'][0]['@attributes'].type);
console.log('<br/>'+json['phone'][1]);
console.log('<br/>'+json['phone'][2]['@attributes'].type);

DEMO

关于javascript - 使用 JavaScript 对象表示法访问 json 值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7202398/

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