📜  js 函数返回获取结果 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:03:49.403000             🧑  作者: Mango

代码示例2
fetch('http://api.steampowered.com/ISteamUserStats/GetGlobalAchievementPercentagesForApp/v0002/?gameid=221380')
    .then(function(response) {
        return response.json();
    })
    .then(function(myJson) {
        console.log(JSON.stringify(myJson));
    });