我有一个访问Twitch.tv API的函数来检索有关实时流的各种信息。当我尝试检索在线流的“游戏”键时,它只返回“未定义”,但是如果我访问开发者控制台,我可以看到记录的json对象包含正确的游戏键。如何正确访问游戏密钥?
我的功能:
$("#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> <strong>Status: " + $streamstatus2 + "</strong><br><br>" + $currentgame);
});
};
})
});
答案 0 :(得分:1)
你需要使用
json['stream']['game']
或json.stream.game