当前位置:网站首页 > 更多 > 站长帮 > 正文

[WEB] axios发生get,post请求

作者:CC下载站 日期:2020-07-03 00:00:00 浏览:71 分类:站长帮

只要可以发送请求,即可做爬虫

经过前段时间学习,了解到还有axios这么个东西。

学的越多,你不会的也就越多,网络这块感觉永无止境呀。

然后试着用一言接口试了一下

<h2 id='onesentence'>{{num}}</h2>
        <script>
        axios.get('https://v1.hitokoto.cn')
            .then(function(response) {
                let data = document.getElementById('onesentence');
                data.innerText = response.data.hitokoto;
                console.log(response.data.hitokoto);
            })
            .catch(function(error) {
                console.log(error);
            });
         </script>
         

以下内容摘自https://www.kancloud.cn/yunye/axios/234845

cdn安装axios:

cdn安装axios:

<script src="https://unpkg.com/axios/dist/axios.min.js"></script>

执行GET请求

// 为给定 ID 的 user 创建请求axios.get('/user?ID=12345')
  .then(function (response) {
    console.log(response);
  })
  .catch(function (error) {
    console.log(error);
  });// 可选地,上面的请求可以这样做axios.get('/user', {
    params: {
      ID: 12345
    }
  })
  .then(function (response) {
    console.log(response);
  })
  .catch(function (error) {
    console.log(error);
  });

执行POST请求

axios.post('/user', {
    firstName: 'Fred',
    lastName: 'Flintstone'
  })
  .then(function (response) {
    console.log(response);
  })
  .catch(function (error) {
    console.log(error);
  });

执行多个并发请求:

        function getUserAccount() {
            return axios.get('/user/12345');
        }

        function getUserPermissions() {
            return axios.get('/user/12345/permissions');
        }

        axios.all([getUserAccount(), getUserPermissions()])
            .then(axios.spread(function(acct, perms) {
                // 两个请求现在都执行完成
            }));

您需要 登录账户 后才能发表评论

取消回复欢迎 发表评论:

关灯