码迷,mamicode.com
首页 > 移动开发 > 详细

axios 的 post get

时间:2020-09-18 01:37:15      阅读:46      评论:0      收藏:0      [点我收藏+]

标签:ons   func   ssi   nts   err   ast   count()   one   first   

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

 

axios 的 post get

标签:ons   func   ssi   nts   err   ast   count()   one   first   

原文地址:https://www.cnblogs.com/caijinghong/p/13670249.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!