我想我们如何使用 javacsript 解析这样的 json,直到使用 for 循环的最后一个元素我已经完成了这个,但是我在第一个 lart 和 2 中得到的结果是 [object,object],[object,object]在第二个和第三个中的 [object,object] 如何警告 json 数组中的每个值
[
{
"location": [
{
"building": [
"Default Building"
],
"name": "Default Location"
}
],
"name": "Default Organization"
},
{
"location": [
{
"building": [
"test_loc1_building1",
"test_loc1_building2"
],
"name": "test location1"
},
{
"building": [
"test_loc2_building2"
],
"name": "test location2"
}
],
"name": "test Organization"
}
]
我一直在工作的代码是
function orgname()
{
var json = <?php echo $response ?>;
alert(json);
alert(json.length);
for(var i=0; i<json.length; i++)
{
var item = json[i];
alert(item);
}
}