Vue.use(VueAxios,axios)报错cannot set property ‘axios‘ of undefined

今天在项目中设置接口错误拦截时用到了axios报错,
cannot set property ‘axios’ of undefined在这里插入图片描述
解决方法:首先我们需要知道axios是一个库,并不是vue中的第三方插件,使用时不能通过Vue.use()安装插件,需要在原型上进行绑定,所以如何配合vue使用axios?
Vue 原本有一个官方推荐的 ajax 插件 vue-resource,但是自从 Vue 更新到 2.0 之后,官方就不再更新 vue-resource

目前主流的 Vue 项目,都选择 axios 来完成 ajax 请求

之前一直使用的是 vue-resource插件,在主入口文件引入import VueResource from 'vue-resource’之后,直接使用Vue.use(VueResource)之后即可将该插件全局引用了;
axios并没有install 方法,所以是不能使用vue.use()方法的。
那么难道每个文件都要来引用一次?解决方法有很多种:
1.结合 vue-axios使用
2.axios 改写为 Vue 的原型属性

//npm
$ npm i axios -S
$ npm i vue-axios -S

//main.js

//全局注册 axios
import Vue from 'vue';
import axios from 'axios';
Vue.prototype.$axios = axios;//this.$axios使用
举例:
this.$axios.get('api/getNewsList').then((response)=>{
        this.newsList=response.data.data;
      }).catch((response)=>{
        console.log(response);
      })

//或 vue-axios
import Vue from 'vue';
import axios from 'axios';
import vueAxios from 'vue-axios';
Vue.use(vueAxios,axios);//Vue.axios/this.axios/this.$http使用axios,一次封装方便协作
举例:
getNewsList(){
      this.axios.get('api/getNewsList').then((response)=>{
        this.newsList=response.data.data;
      }).catch((response)=>{
        console.log(response);
      })规范

//template.vue
//模板中局部引入
import axios from 'axios';//this.axios使用

虽然说有这两种方式,但是在vue上挂载vue-axios老报错
原来必须得这样Vue.use(VueAxios,axios)报错cannot set property ‘axios‘ of undefined_第1张图片
vue-axios这个包来处理这个挂载问题。vue-axios 是在axios基础上扩展的插件,在Vue.prototype原型上扩展了$http等属性,可以更加方便的使用axios。

npm 上对 vue-axios的解释: https://www.npmjs.com/package/vue-axios

你可能感兴趣的:(axios,前端)