vue3でgetCurrentInstanceを使用する方法

王林
リリース: 2023-05-16 12:28:06
転載
2606 人が閲覧しました

親コンポーネント内:

1. セットアップ構文シュガーでサブコンポーネントをインポートします

2. サブコンポーネントのラベルに ref 値をバインドします

3 vue

4 の getCurrentInstance メソッドをオンデマンドでエクスポートすることから内部的にセットアップします。getCurrentInstance メソッドを呼び出して proxy

5. proxy.$refs.subcomponent ref name.properties/ を通じて呼び出しを実装します。サブコンポーネント内のメソッド

<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 &#39;vue&#39;;

const { proxy } = getCurrentInstance();

console.log(proxy.api);
console.log(proxy.StringUtil.isBlank(&#39;1&#39;));
ログイン後にコピー

方法 1: getCurrentInstance メソッドを使用して現在のコンポーネント インスタンスを取得し、ルートとルーターを取得します

Html

<template>
  <div>

  </div>
</template>
<script>
import { defineComponent, getCurrentInstance } from &#39;vue&#39;

export default defineComponent({
  name: &#39;About&#39;,
  setup(){
    const { proxy } = getCurrentInstance()
    console.log(proxy.$root.$route)
    console.log(proxy.$root.$router)
    return {}
  }
})
</script>
ログイン後にコピー

方法 2: ルート経由 useRoute useRouter をインポートしてルートとルーターを使用します。

Html

import { defineComponent } from ‘vue&#39;
import { useRoute, useRouter } from ‘vue-router&#39;
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()
ログイン後にコピー

そこで使用しますプロキシオンラインでも問題ありません。

以上がvue3でgetCurrentInstanceを使用する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

関連ラベル:
ソース:yisu.com
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
最新の問題
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート