ts와 함께 Vue3에서 getCurrentInstance를 사용하는 방법

王林
풀어 주다: 2023-05-15 22:37:04
앞으로
2281명이 탐색했습니다.

getCurrentInstance는 ts와 함께 사용됩니다

vue3 프로젝트에서는 ts 없이 사용해도 문제 없습니다

const { proxy } = getCurrentInstance()
로그인 후 복사

ts에서 사용하면 오류가 발생합니다: Error:...Type "ComponentInternalInstance | null"

우리는 일반적으로 프로젝트에서 이 작업을 수행합니다. 많은 getCurrentInstance() 메소드가 사용되며 직접 캡슐화합니다.

useCurrentInstance.ts 파일 생성:

import { ComponentInternalInstance, getCurrentInstance } from 'vue'
export default function useCurrentInstance() {
    const { appContext } = getCurrentInstance() as ComponentInternalInstance
    const proxy = appContext.config.globalProperties
    return {
        proxy
    }
}
로그인 후 복사

컴포넌트 내에서 사용:

<script lang="ts">
import { defineComponent } from "vue";
import useCurrentInstance from "@/utils/useCurrentInstance";
export default defineComponent({
  setup() {
    const { proxy } = useCurrentInstance();
    console.log(proxy);
  },
});
</script>
로그인 후 복사

vue3+ts는 getCurrentInstance를 사용하여 보고합니다. error

vue3에는 이 기능이 없습니다. + 다양한 API 메소드

vue3 이와 유사한 인스턴스를 생성하는 메소드를 제공합니다.

const instance = getCurrentInstance() 

const a1= getCurrentInstance();
a1.$toast({type: &#39;error&#39;, text: &#39;登录失败&#39; });
로그인 후 복사

이것은 로컬 디버깅에만 적합합니다. 온라인으로 실행할 때 오류가 보고됩니다. 오류 세부 정보는 다음과 같습니다.

"proxy" 속성은 "ComponentInternalInstance | null" 유형에 존재하지 않습니다. ts(2339)

이 오류는 아래에 보고됩니다

`any` 값에 대한 안전하지 않은 구성원 액세스 .$axios eslint@typescript-eslint/no-unsafe-member-access

`any의 안전하지 않은 호출. ` 입력된 값입니다. eslint@typescript-eslint/no-unsafe-call

이유: getCurrentInstance()의 반환 유형이 null이므로 여기에 어설션을 추가하면 됩니다.

Null 결과를 필터링하려면 프록시 뒤에 ?를 추가하세요. 즉,

const instance = getCurrentInstance()?.proxy  
 instance ?.$toast(&#39;请xxx!&#39;)
로그인 후 복사

위 내용은 ts와 함께 Vue3에서 getCurrentInstance를 사용하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

관련 라벨:
원천:yisu.com
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿