gpt4 book ai didi

javascript - 如何在 json 对象中访问此键? (javascript)

转载 作者:行者123 更新时间:2023-12-03 03:54:16 24 4
gpt4 key购买 nike

我有一个函数可以访问 Twitch.tv API 以检索有关直播的各种信息。当我尝试检索在线流的“游戏” key 时,它只是返回“未定义”,尽管如果我访问开发人员控制台,我可以看到记录的 json 对象包含正确的游戏 key 。如何正确获取游戏 key ?

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);

});

};
})
});

最佳答案

你需要使用

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

关于javascript - 如何在 json 对象中访问此键? (javascript),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45025478/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com