首頁 > 軟體

vue3中getCurrentInstance範例講解

2023-03-23 22:02:04

父元件中:

1.setup語法糖中匯入子元件

2.在子元件標籤上繫結ref值

3.setup內部從vue中按需匯出 getCurrentInstance 方法

4.呼叫getCurrentInstance方法匯出proxy

5.通過proxy.$refs.子元件ref名.子元件內屬性/方法 實現呼叫

<template>
  <!-- 父元件 -->
  <div>
    <!-- 子元件 -->
    <Child ref="child" />
    <button @click="changeChildren">子元件count+1</button>
  </div>
</template>
 
<script setup lang="ts" name="Father">
import { getCurrentInstance, ComponetInternalInstance,ref } from "vue";
import Child from "./zi.vue";
const child = ref(null)
 // as ComponetInternalInstance表示型別斷言,ts時使用。否則報錯,proxy為null
const { proxy } = getCurrentInstance() as ComponetInternalInstance;
function changeChildren() {
  proxy.$refs.child.count += 1;
  //也可以使用ref資料.value的形式呼叫:
  //child.value.count += 1
  console.log(child.value.name)
}
</script>
 
<style scoped></style>

main.js

import api from "./utils/api.js"
import StringUtil from "./utils/StringUtil.js"

app.config.globalProperties.api = api;
app.config.globalProperties.StringUtil = StringUtil;
import {getCurrentInstance } from 'vue';

const { proxy } = getCurrentInstance();

console.log(proxy.api);
console.log(proxy.StringUtil.isBlank('1'));

方式一、通過 getCurrentInstance 方法獲取當前元件範例,從而獲取 route 和 router

Html

<template>
  <div>

  </div>
</template>
<script>
import { defineComponent, getCurrentInstance } from 'vue'

export default defineComponent({
  name: 'About',
  setup(){
    const { proxy } = getCurrentInstance()
    console.log(proxy.$root.$route)
    console.log(proxy.$root.$router)
    return {}
  }
})
</script>

方式二:通過從路由中匯入 useRoute useRouter 使用 route 和 router。

Html

import { defineComponent } from ‘vue'
import { useRoute, useRouter } from ‘vue-router'
export default defineComponent({
setup () {
const $route = useRoute()
const r o u t e r = u s e R o u t e r ( ) c o n s o l e . l o g ( router = useRouter() console.log(router=useRouter()console.log(route)
console.log($router)
}
})

附:Vue3中關於getCurrentInstance的大坑

開發中只適用於偵錯! 不要用於線上環境,否則會有問題!

解決方案:

方案1.

const instance = getCurrentInstance()
console.log(instance.appContext.config.globalProperties)

獲取掛載到全域性中的方法

方案2.

const { proxy } = getCurrentInstance()  

使用proxy線上也不會出現問題

總結

到此這篇關於vue3中getCurrentInstance的文章就介紹到這了,更多相關vue3中getCurrentInstance內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!


IT145.com E-mail:sddin#qq.com