美文网首页vueaxios
vue中axios基本用法

vue中axios基本用法

作者: 阳光之城alt | 来源:发表于2019-01-21 14:40 被阅读0次

1.首先安装axios:

image.png
1):npm install

2):npm install vue-axios --save

3):npm install qs.js --save  //这一步可以先忽略,它的作用是能把json格式的直接转成data所需的格式

2.安装成功后,在main.js页面引用:

import Vue from 'vue'
import axios from 'axios'
Vue.prototype.$axios = axios    //全局注册,使用方法为:this.$axios
Vue.prototype.qs = qs           //全局注册,使用方法为:this.qs

3最后开始使用请求:

<script>
    export default{
        data(){
            return{
                userId:666,
          token:'',
            }
        },
        created(){
            this.$axios({
                method:'post',
                url:'api',
                data:this.qs.stringify({    //这里是发送给后台的数据
                      userId:this.userId,
                      token:this.token,
                })
            }).then((response) =>{          //这里使用了ES6的语法
                console.log(response)       //请求成功返回的数据
            }).catch((error) =>
                console.log(error)       //请求失败返回的数据
            })
        }
    }
</script>

同时发起多个请求

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) {
    // Both requests are now complete
  }));
创建一个实例
你可以创建一个拥有通用配置的axios实例

axios.creat([config])
var instance = axios.create({
  baseURL: 'https://some-domain.com/api/',
  timeout: 1000,
  headers: {'X-Custom-Header': 'foobar'}
});

原文地址
中文讲解:lewis1990@amoy
https://www.cnblogs.com/silent007/p/8603367.html
https://www.cnblogs.com/wang-man/p/9531339.html (移除了拦截器。)

https://www.cnblogs.com/sybboy/p/7249987.html (知识讲解点)

相关文章

网友评论

    本文标题:vue中axios基本用法

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