大家早,
我正在尝试迭代一个字符串并用 解析数据$.parseJSON
,然后将其发送到一个选择,但由于某种原因,当启动时for
什么都没有发生,没有错误或类似的事情......简单地说,脚本停止工作(作为退出,在 php 中)
json:
{
"response": {
"chars": {
"0": {
"guid": "728166",
"name": "Pepito",
"race": "1",
"class": "6",
"gender": "0",
"level": "80",
"money": "1412915382",
"apoints": "0",
"hpoints": "200000",
"tkills": "1731",
"title": "0"
},
"1": {
"guid": "778879",
"name": "Chocolate",
"race": "7",
"class": "8",
"gender": "1",
"level": "88",
"money": "0",
"apoints": "0",
"hpoints": "0",
"tkills": "0",
"title": "0"
}
}
}
}
编码:
var json = *this is the top json*;
var parsed = $.parseJSON(json);
for (var i=0; i<parsed.length; i++){
console.log(parsed.response.chars[i].name);
}
哪一部分是错的?据我所知,我认为没有错。
谢谢!