迭代2D数组

时间:2014-04-04 22:04:53

标签: javascript json

这是一个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);

}

没用。不知道为什么,任何想法为什么 - 干杯。

0 个答案:

没有答案