vue项目中axios的全局使用方法
vue中想要将插件全局使用得使用Vue.use()方法
我是跟着上面这句话这个思路去往下想的
//如果想写一个Vue插件,该插件需要有个公开方法install,这个方法的第一个参数是 Vue 构造器,第二个参数是一个可选的选项对象:
var MyPlugin = {}//对象才能点方法
MyPlugin.install = function(Vue,options){
// 1. 添加全局方法或属性
Vue.myGlobalMethod = function () {
// 逻辑...
}
// 2. 添加全局资源
Vue.directive('my-directive', {
bind (el, binding, vnode, oldVnode) {
// 逻辑...
}
...
})
// 3. 注入组件选项
Vue.mixin({
created: function () {
// 逻辑...
}
...
})
// 4. 添加实例方法
Vue.prototype.$myMethod = function (methodOptions) {
// 逻辑...
}
}
那么我们该怎么写呢???
- 在src/plugins/http.js中写方法
import axios from 'axios'
//如果想写一个Vue插件,该插件需要有个公开方法install,这个方法的第一个参数是 Vue 构造器,第二个参数是一个可选的选项对象:
var MyPlugin = {}//对象才能点方法
const MyHttpServe = {}
MyHttp.Serve.install = (Vue) =>{
axios.defaults.baseURL = ''
axios.interceptors.request.use(config =>{
return config
},function(error){
return Promise.reject(error)
})
//在response拦截器中,隐藏进度条 nprogress.done()
axios.interceptors.response.use(config =>{
return config
})
// 4. 添加实例方法给Vue函数添加一个原型属性$axios 指向Axios
Vue.prototype.$http = axios
}
export default MyHttpServe
- 在app.js中全局导入
import MyHttpServe from '@/plugings/http.js'
Vue.use(MyHttpServe)
- 在任意的一个组件中使用http请求方法
async getApi(){
const res = await this.$http.get(`请求路径`)
}
- 这里使用了 ES6语法的async具体可以看:阮一峰老师的文章