当前位置:首页 » 《随便一记》 » 正文

在Vue中,向上通信(从孙子到爷爷)的常用方法有以下几种:

17 人参与  2024年04月11日 18:25  分类 : 《随便一记》  评论

点击全文阅读


在Vue中,向上通信(从孙子到爷爷)的常用方法有以下几种:

使用$parent访问父组件,再使用$parent访问爷爷组件,调用其方法。使用$root访问根组件,再使用深度优先搜索遍历其子孙组件,找到爷爷组件,调用其方法。使用Vue实例的provide()inject()方法,在爷爷组件中提供一个函数或对象,让孙子组件使用inject()获取爷爷组件中的属性或方法,间接调用其方法。

下面简单介绍这三种方法的使用。

使用$parent

在孙子组件中使用$parent访问父组件,再使用$parent访问爷爷组件,调用其方法。示例代码如下:

<!-- 爷爷组件 --><template>  <div>    <father @callGrandfather="callBack"></father>  </div></template><script>export default {  methods: {    callBack() {      console.log('爷爷的方法');    }  }};</script><!-- 父组件 --><template>  <div>    <son :callGrandfather="callBack"></son>  </div></template><script>export default {  methods: {    callBack() {      this.$emit('callGrandfather');    }  },  components: {    'son': {      template: '<div><button @click="callBack">调用爷爷的方法</button></div>',      props: ['callGrandfather'],      methods: {        callBack() {          this.$parent.$parent.callBack();        }      }    }  }};</script>
使用$root

在孙子组件中使用$root访问根组件,再使用深度优先搜索遍历其子孙组件,找到爷爷组件,调用其方法。示例代码如下:

<!-- 爷爷组件 --><template>  <div>    <father @callGrandfather="callBack"></father>  </div></template><script>export default {  methods: {    callBack() {      console.log('爷爷的方法');    }  }};</script><!-- 父组件 --><template>  <div>    <son :callGrandfather="callBack"></son>  </div></template><script>export default {  methods: {    callBack() {      this.$emit('callGrandfather');    }  },  components: {    'son': {      template: '<div><button @click="callBack">调用爷爷的方法</button></div>',      props: ['callGrandfather'],      methods: {        callBack() {          let grandfather = this.$root.$children.find(item => item.$options.name === 'Grandfather');          grandfather.callBack();        }      }    }  }};</script>
使用provide()inject()

在爷爷组件中使用provide()提供一个函数或对象,让孙子组件使用inject()获取爷爷组件中的属性或方法,间接调用其方法。示例代码如下:

<!-- 爷爷组件 --><template>  <div>    <father :data="data"></father>  </div></template><script>export default {  provide() {            // 在爷爷组件中提供一个方法    return {      data: '爷爷的数据',      callBack: this.callBack    }  },  methods: {    callBack() {      console.log('爷爷的方法');    }  }};</script><!-- 父组件 --><template>  <div>    <son></son>  </div></template><script>export default {  inject: ['data', 'callBack'],  // 在孙子组件中注入方法  components: {    'son': {      template: '<div><button @click="callBack">调用爷爷的方法</button></div>',      methods: {}    }  }};</script>

注:这里提供的只是几种可能的方法,具体使用要根据实际情况选择。
vue3.0照例只是写法改变


点击全文阅读


本文链接:http://zhangshiyu.com/post/93996.html

<< 上一篇 下一篇 >>

  • 评论(0)
  • 赞助本站

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。

关于我们 | 我要投稿 | 免责申明

Copyright © 2020-2022 ZhangShiYu.com Rights Reserved.豫ICP备2022013469号-1