gpt4 book ai didi

javascript - 在javascript中从json数组访问数字对象

转载 作者:行者123 更新时间:2023-12-02 21:32:20 26 4
gpt4 key购买 nike

我正在使用 ajax 在 javascript 中从 PHP 检索一些 JSON 数组。首先,我解析 JSON 数组并使用循环访问每个元素。现在我遇到了一个问题,JSON 数组中有一些数字对象,但我无法访问它们。我的 JSON 数组如下所示:

[
{
"Name": "Umar Ghaffar",
"UniqueID": "b57a956420b885ebb",
"loggined": "no",
"Type": "Security",
"0": "0", // how can i get the value of this object
"1": "1"
},

{
"Name": "Usama Ghaffar",
"UniqueID": "af4dc4ac58ee0eb54",
"loggined": "",
"Type": "Security",
"0": "0",
"1": "0"
}
]

这就是我访问数组的方式

var newText1 = document.createTextNode(data[i].Name);
var newText2 = document.createTextNode(data[i].UniqueID);
var newText3 = document.createTextNode(data[i].loggined);
var newText4 = document.createTextNode(data[i].Type);
var newText5 = document.createTextNode(data[i].0); //here it gives an error

最佳答案

您可以尝试使用括号表示法:

 var newText5  = document.createTextNode(data[i]["0"])

关于javascript - 在javascript中从json数组访问数字对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60590364/

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