小赖子的英国生活和资讯

怎么通过 Javascript/JQuery/Ajax 来调用 API?

阅读 桌面完整版

本站开始提供一些免费有意思的API让大伙来使用. 所有的API都是在这台主机VPS上实现和运行的.

举这个API为例 fortune 能随机的返回一段(句)话 然后我们就可以通过 Javascript/JQuery/Ajax 来动态的显示在浏览器中:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
<script type='text/Javascript' src='https://helloacm.com/jquery/jquery-2.1.4.min.js'></script>
<script type='text/Javascript'>
$(document).ready(function () {
  $.ajax(
    {
        dataType: "json",
        url: "https://helloacm.com/api/fortune/", 
        cache: false, 
        success: function (response) {
          document.write(response);
        }
    })        
});                
</script>
<script type='text/Javascript' src='https://helloacm.com/jquery/jquery-2.1.4.min.js'></script>
<script type='text/Javascript'>
$(document).ready(function () {
  $.ajax(
    {
        dataType: "json",
        url: "https://helloacm.com/api/fortune/", 
        cache: false, 
        success: function (response) {
          document.write(response);
        }
    })        
});                
</script>

做少量修改加个显示 区域 和按钮

<div id='fortune_text'> </div>

并把 document.write 改成 $(‘#fortune_text’).html(response).



JQUERY 方便的调用AJAX并把获得的结果 按 JSON格式解码 要写的代码实际很少了.

英文: https://helloacm.com/how-to-invoke-apis-the-javascriptajax-example/

强烈推荐

微信公众号: 小赖子的英国生活和资讯 JustYYUK

阅读 桌面完整版
Exit mobile version