我的编程空间,编程开发者的网络收藏夹
学习永远不晚

vue3中的getCurrentInstance如何使用

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

vue3中的getCurrentInstance如何使用

这篇“vue3中的getCurrentInstance如何使用”文章的知识点大部分人都不太理解,所以小编给大家总结了以下内容,内容详细,步骤清晰,具有一定的借鉴价值,希望大家阅读完这篇文章能有所收获,下面我们一起来看看这篇“vue3中的getCurrentInstance如何使用”文章吧。

父组件中:

setup语法糖中导入子组件

在子组件标签上绑定ref值

setup内部从vue中按需导出 getCurrentInstance 方法

调用getCurrentInstance方法导出proxy

通过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为nullconst { 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如何使用”这篇文章的内容,相信大家都有了一定的了解,希望小编分享的内容对大家有帮助,若想了解更多相关的知识内容,请关注编程网行业资讯频道。

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

vue3中的getCurrentInstance如何使用

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

vue3中的getCurrentInstance如何使用

这篇“vue3中的getCurrentInstance如何使用”文章的知识点大部分人都不太理解,所以小编给大家总结了以下内容,内容详细,步骤清晰,具有一定的借鉴价值,希望大家阅读完这篇文章能有所收获,下面我们一起来看看这篇“vue3中的ge
2023-07-06

vue3中getCurrentInstance怎么使用

父组件中:1.setup语法糖中导入子组件2.在子组件标签上绑定ref值3.setup内部从vue中按需导出getCurrentInstance方法4.调用getCurrentInstance方法导出proxy5.通过proxy.$refs.子组件ref名.子组件内属性/方法实现调用子组件count+1import{getCurrentInstance,ComponetInternalInstance,ref}from"vue";importChildfrom"./
2023-05-16

Vue3之getCurrentInstance与ts如何结合使用

这篇文章主要介绍“Vue3之getCurrentInstance与ts如何结合使用”,在日常操作中,相信很多人在Vue3之getCurrentInstance与ts如何结合使用问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希
2023-07-06

Vue3之getCurrentInstance与ts结合使用的方式

这篇文章主要介绍了Vue3之getCurrentInstance与ts结合使用的方式,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教
2023-05-17

Vue3中关于getCurrentInstance的大坑及解决

这篇文章主要介绍了Vue3中关于getCurrentInstance的大坑及解决方案,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教
2023-05-16

使用vue3+ts+setup获取全局变量getCurrentInstance的方法实例

这篇文章主要给大家介绍了关于使用vue3+ts+setup获取全局变量getCurrentInstance的相关资料,文中通过实例代码介绍的非常详细,对大家学习或者使用vue3具有一定的参考学习价值,需要的朋友可以参考下
2022-11-13

vue3中的hooks如何使用

一、什么是hookshook是钩子的意思,看到“钩子”是不是就想到了钩子函数?事实上,hooks还真是函数的一种写法。vue3借鉴reacthooks开发出了CompositionAPI,所以也就意味着CompositionAPI也能进行自定义封装hooks。vue3中的hooks就是函数的一种写法,就是将文件的一些单独功能的js代码进行抽离出来,放到单独的js文件中,或者说是一些可以复用的公共方法/功能。其实hooks和vue2中的mixin有点类似,但是相对mixins而言,hooks更清楚
2023-05-14

vue3中cookie如何使用

前言cookie使用最多的地方想必是保存用户的账号与密码,可以避免用户每次登录时都要重新输入1.vue中cookie的安装在终端中输入命令npminstallvue-cookies--save,即可安装cookies,安装之后在main.js文件中写下以下代码import{createApp}from&#39;vue&#39;importVueCookiesfrom&#39;vue-cookies&#39;constapp=createApp(App)app.co
2023-05-14

vue3.x中的apollo如何使用

今天小编给大家分享一下vue3.x中的apollo如何使用的相关知识点,内容详细,逻辑清晰,相信大部分人都还太了解这方面的知识,所以分享这篇文章给大家参考一下,希望大家阅读完这篇文章后有所收获,下面我们一起来了解一下吧。通过客户端获取Apo
2023-07-05

Vue3+ts+setup getCurrentInstance使用时遇到的问题以及解决办法

getCurrentInstance方法用于获取当前组件实例,仅在setup和生命周期中起作用,下面这篇文章主要给大家介绍了关于Vue3+ts+setup getCurrentInstance使用时遇到的问题以及解决办法,需要的朋友可以参考下
2022-11-13

vue3中如何使用JSX

这篇文章主要介绍了vue3中如何使用JSX的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇vue3中如何使用JSX文章都会有所收获,下面我们一起来看看吧。在绝大多数情况下,Vue 推荐使用模板