如何在json对象中访问此密钥? (JavaScript的)

时间:2017-07-11 04:35:15

标签: javascript json

我有一个访问Twitch.tv API的函数来检索有关实时流的各种信息。当我尝试检索在线流的“游戏”键时,它只返回“未定义”,但是如果我访问开发者控制台,我可以看到记录的json对象包含正确的游戏键。如何正确访问游戏密钥?

screenshot

我的功能:

$("#usernamelookupcheck").on("click", function() {
    $.getJSON("https://wind-bow.glitch.me/twitch-api/users/" + $("#usernamelookup").val(), function(json) {
        if (json["error"] == "Not Found") {
            $streamstatus2 = "User does not exist!";
            $("#lookupresult").html("User does not exist!");
        } else {
            $.getJSON("https://wind-bow.glitch.me/twitch-api/streams/" + $("#usernamelookup").val(), function(json) {
                $currentgame = json["game"];
                if (json["stream"] === null) {
                    $streamstatus2 = "Offline";
                } else {
                    $streamstatus2 = "Online" + "<br><br>";
                    console.log(json);
                };
                $("#lookupresult").html("<br><br> &nbsp; &nbsp; &nbsp; <strong>Status: " + $streamstatus2 + "</strong><br><br>" + $currentgame);

            });

        };
    })
});

1 个答案:

答案 0 :(得分:1)

你需要使用

json['stream']['game']json.stream.game