您好,登錄后才能下訂單哦!
這篇文章主要介紹“vue3中如何實現定義全局變量”的相關知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強,希望這篇“vue3中如何實現定義全局變量”文章能幫助大家解決問題。
在vue2中,我們知道vue2.x是使用Vue.prototype.$xxxx=xxx來定義全局變量,然后通過this.$xxx來獲取全局變量。
但是在vue3中,這種方法顯然不行了。因為vue3中在setup里面我們是無法獲取到this的,因此按照官方文檔我們使用下面方法來定義全局變量:
首先在main.js里寫一個我們要定義的全局變量,比如一個系統id吧
app.config.globalProperties.$systemId = "10"
現在在頁面里需要使用這個變量,只需要從vue中引入getCurrentInstance即可,注意不能在頁面中使用this.
import { getCurrentInstance } from "vue"; const systemId = getCurrentInstance()?.appContext.config.globalProperties.$systemId console.log(systemId);//控制臺可以看到輸出了10
類型:[key: string]: any
默認:undefined
用法
添加一個可以在應用的任何組件實例中訪問的全局 property。組件的 property 在命名沖突具有優先權。
這可以代替 Vue 2.x Vue.prototype 擴展:
// 之前(Vue 2.x) Vue.prototype.$http = () => {} // 之后(Vue 3.x) const app = Vue.createApp({}) app.config.globalProperties.$http = () => {}
當我們想在組件內調用http時需要使用getCurrentInstance()來獲取。
import { getCurrentInstance, onMounted } from "vue"; export default { setup( ) { const { ctx } = getCurrentInstance(); //獲取上下文實例,ctx=vue2的this onMounted(() => { console.log(ctx, "ctx"); ctx.http(); }); }, };
getCurrentInstance代表上下文,即當前實例。ctx相當于Vue2的this, 但是需要特別注意的是ctx代替this只適用于開發階段,如果將項目打包放到生產服務器上運行,就會出錯,ctx無法獲取路由和全局掛載對象的。此問題的解決方案就是使用proxy替代ctx,代碼參考如下。
import { getCurrentInstance } from 'vue' export default ({ name: '', setup(){ const { proxy } = getCurrentInstance() // 使用proxy代替ctx,因為ctx只在開發環境有效 onMounted(() => { console.log(proxy, "proxy"); proxy.http(); }); } })
關于“vue3中如何實現定義全局變量”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識,可以關注億速云行業資訊頻道,小編每天都會為大家更新不同的知識點。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。