这是一个JSON对象:
{
"status": "OK",
"user": {
"auth_token": "xxxxxx",
"name": "John Dot",
"pictures":["http://xxxxx.com/me/picture"],
"nickname":"tg",
"yob": "1986",
}
}
var PJson = JSON.stringify(this.responseText);
PJson = JSON.parse(PJson);
我只对获取用户对象中的键和值感兴趣。我为每个循环尝试了一次:
for (var key in PJson.user) {
console.log('here');
console.log(key);
}
没用。不知道为什么,任何想法为什么 - 干杯。