axios

作者: 为什么要简称 | 来源:发表于2019-11-20 12:41 被阅读0次

Axios(发音xos)是一个基于promise的HTTP库,可以用在浏览器和node.js中。
vue1.x的时候提供了vue-resource专门用于发送ajax请求,到2.x的时候作者发文推荐使用axios库发送ajax请求

axios.get('http://localhost:80/xxx')
  .then(res=>{})
  .catch(err=>{})

单说基本使用感觉也没啥说的...
拦截器啥的之后再记..

相关文章

网友评论

      本文标题:axios

      本文链接:https://www.haomeiwen.com/subject/hmfoictx.html