axios请求使用

2021/9/7 6:07:59

本文主要是介绍axios请求使用,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

首先进行安装axios

可以使用 yarn安装  命令如下: yarn add axios

执行get请求

axios.get('/user',{
params:{ id:13}

}).then(function (response) {

console.log(response)  

}).catch(function (err)

{

console.log(err)
})

 

执行 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) {
    // 两个请求现在都执行完成
  }));


这篇关于axios请求使用的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程