在vue项目开发中,我们使用axios进行ajax请求,很多人一开始使用axios的方式,会当成vue-resoure的使用方式来用,即在主入口文件引入import VueResource from 'vue-resource'之后,直接使用Vue.use(VueResource)之后即可将该插件全局引用了,所以axios这样使用的时候就报错了,很懵逼。
仔细看看文档,就知道axios 是一个基于 promise 的 HTTP 库,axios并没有install 方法,所以是不能使用vue.use()方法的。查看vue插件
那么难道我们要在每个文件都要来引用一次axios吗?多繁琐!!!解决方法有很多种:
1.结合 vue-axios使用
2.axios 改写为 Vue 的原型属性
3.结合 Vuex的action
1.结合 vue-axios使用
看了vue-axios的源码,它是按照vue插件的方式去写的。那么结合vue-axios,就可以去使用vue.use方法了
首先在主入口文件main.js中引用:
1
2
3
4
|
import axios from 'axios' import VueAxios from 'vue-axios' Vue.use(VueAxios,axios); |
之后就可以使用了,在组件文件中的methods里去使用了:
1
2
3
4
5
6
7
|
getNewsList(){ this .axios.get( 'api/getNewsList' ).then((response)=>{ this .newsList=response.data.data; }). catch ((response)=>{ console.log(response); }) } |
2.axios 改写为 Vue 的原型属性(不推荐这样用)
首先在主入口文件main.js中引用,之后挂在vue的原型链上:
import axios from 'axios'
Vue.prototype.$ajax= axios
在组件中使用:
1
2
3
4
5
6
|
this .$ajax.get( 'api/getNewsList' ) .then((response)=>{ this .newsList=response.data.data; }). catch ((response)=>{ console.log(response); }) |
结合 Vuex的action
在vuex的仓库文件store.js中引用,使用action添加方法
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
import Vue from 'Vue' import Vuex from 'vuex' import axios from 'axios' Vue.use(Vuex) const store = new Vuex.Store({ // 定义状态 state: { user: { name: 'xiaoming' } }, actions: { // 封装一个 ajax 方法 login (context) { axios({ method: 'post' , url: '/user' , data: context.state.user }) } } }) export default store |
在组件中发送请求的时候,需要使用 this.$store.dispatch
1
2
3
4
5
|
methods: { submitForm () { this .$store.dispatch( 'login' ) } } |
补充知识:ElementUI 在VUE中配置 main.js与axios的关系
一、在main.js中:
import ElementUI from 'element-ui'
Vue.use(ElementUI)
二、在main.js中,数据请求axios不能在这里配置
以上这篇vue全局使用axios的操作就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。
原文链接:https://segmentfault.com/a/1190000013128858