Vue3全局挂载使用Axios学习实战
目录
- 引言
- 一、全局挂载
- 二、全局使用
引言 在
vue2
中会习惯性的把axios
挂载到全局,以方便在各个组件或页面中使用this.$http
请求接口。但是在vue3
中取消了Vue.prototype
,在全局挂载方法和属性时,需要使用官方提供的globalProperties
API。文章图片
一、全局挂载
- 在
vue2
项目中,入口文件main.js
配置Vue.prototype
挂载全局方法对象:
import Vue from 'vue'import router from '@/router'import store from '@vuex'import Axios from 'axios'import Utils from '@/tool/utils'import App from './App.vue'// .../* 挂载全局对象 start */Vue.prototype.$http = Axios; Vue.prototype.$utils = Utils; /* 挂载全局对象 end */new Vue({router,store,render: h => h(App)}).$mount('#app')
- 在
vue3
项目中,入口文件main.js
配置globalProperties
挂载全局方法对象:
import { createApp } from 'vue'import router from './router'import store from './store'import Axios from 'axios'import Utils from '@/tool/utils'import App from './App.vue'// ...const app = createApp(App)/* 挂载全局对象 start */app.config.globalProperties.$http = Axiosapp.config.globalProperties.$utils = Utils/* 挂载全局对象 end */app.use(router).use(store); app.mount('#app')
二、全局使用
- 在
vue2
中使用this.$http
:
- 在
vue3
的setup
中使用getCurrentInstance
API获取全局对象:
- 方法一:通过
getCurrentInstance
方法获取当前实例,再根据当前实例找到全局实例对象appContext
,进而拿到全局实例的config.globalProperties
。 - 方法二:通过
getCurrentInstance
方法获取上下文,这里的proxy
就相当于this
。
getCurrentInstance()
看到其中有很多全局对象,如:$route
、$router
、$store
。如果全局使用了ElementUI
后,还可以拿到$message
、$dialog
等等。【Vue3全局挂载使用Axios学习实战】以上就是Vue3全局挂载使用Axios学习实战的详细内容,更多关于Vue3全局挂载使用Axios的资料请关注脚本之家其它相关文章!
推荐阅读
- 前端html|Vue3调用高德地图
- apipost脚本使用讲解一~全局变量
- docker|docker部署mysql并挂载数据卷
- 前端Vuer,请收下这份《Vue3中使用JSX简明语法》
- Linux|Linux下mount挂载新硬盘和开机自动挂载
- vue3+ts中ref与reactive指定类型实现示例
- 【vue3源码】一、认识副作用函数与响应式数据
- Vue3中插槽的概念和用法
- Vite中使用Ant|Vite中使用Ant Design Vue3.x框架教程示例
- Vue3+ElementPlus|Vue3+ElementPlus 表单组件的封装实例