只需提醒JSON数据

时间:2014-10-07 06:26:59

标签: jquery json

<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="utf-8">
        <title>test</title>
        <meta name="description" content="test">
        <meta name="author" content="test">
        <!--Google's CDC for jQuery.-->
        <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
        <script type="text/javascript" src="show.js"></script>
    </head>

    <body>

    </body>
</html>

$(document).ready(function() { 
     $.getJSON('http://status.leagueoflegends.com/shards?api_key=secretcode', function(data) {
  alert(JSON.stringify(data));
});
});

当我试图提醒时。

https://na.api.pvp.net/api/lol/na/v1.4/summoner/by-name/RiotSchmick?api_key=secretcode

有效。

但是这个。 http://status.leagueoflegends.com/shards?api_key=secretcode

不起作用。

PS。密码是他们给我们的API密钥。

1 个答案:

答案 0 :(得分:0)

由于我的声誉目前很低,我直接回答,无法添加评论。我希望我不会打扰任何人。

$ .getJSON - 函数允许您追加多个回调函数。这些功能是&#39; .done()&#39;,&#39; .always()&#39;和&#39; .fail()&#39;。

$.getJSON('http://status.leagueoflegends.com/shards?api_key=secretcode', function (data) {
})
.done(function( data ) {
    alert( data );
})
.fail(function( jqXHR, textStatus, errorThrown ) {
  alert( errorThrown );  
});

查看更多here

现在您应该能够获得更详细的错误消息。 ;)