Vue之axios

axios 简介
axios 是一个基于Promise 用于浏览器和 nodejs 的 HTTP 客户端,它本身具有以下特征:


 1. 从浏览器中创建 XMLHttpRequest
 2. 从 node.js 发出 http 请求从 node.js 发出 http 请求
 3. 支持 Promise API支持 Promise API
 4. 拦截请求和响应拦截请求和响应
 5. 转换请求和响应数据转换请求和响应数据
 6. 取消请求取消请求
 7. 自动转换JSON数据
 8. 客户端支持防止 CSRF/XSRF客户端支持防止 CSRF/XSRF

引入方式:

$ npm install axios
$ cnpm install axios //taobao源
$ bower install axios
或者使用cdn:
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>

例子:
main.js注册axios

import Vue from 'vue'
import App from './App.vue'
import router from './router'
import store from './store'
import axios from 'axios'

Vue.config.productionTip = false
Vue.prototype.$axios = axios

new Vue({
  router,
  store,
  axios,
  render: h => h(App)
}).$mount('#app')

axios之get请求

getApi(){
      this.$axios.get("url")
      .then((res) => {
        console.log('111')
        console.log(res.data)
      })
      .catach((err) => {
        console.log('222')
        console.log(err)
      })
 

axios之post请求

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

执行多个并发请求

function getUserAccount() {
return axios.get('url1');
}
 
function getUserPermissions() {
return axios.get('url2');
}
 
axios.all([getUserAccount(), getUserPermissions()])
.then(axios.spread(function (acct, perms) {
//两个请求现已完成
}));
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Radom7

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值