vue组件之间的几种通讯方式

1. props和$emit

最简单常用的方式

目录结构


目录结构
// index.vue
<template>
  <div>
    <h2>父组件中</h2> 
    输入向子组件传值<input type="text" v-model="foo">
    <child-com :foo="foo" @out="getMsg"></child-com>
    <h2>子组件信息</h2>{{childMsg}}
  </div>
</template>

<script>
  const childCom = () => import('./components/child')
  export default {
    components: {
      childCom
    },
    data() {
      return {
        foo: '',
        childMsg: ''
      }
    },
    methods: {
      getMsg(v) {
        this.childMsg = v
      }
    }
  }
</script>

// child.vue
<template>
  <div>
    <h2>子组件中</h2> {{foo}}
    <br/>
    <button @click="sendMsg">点击向父组件传值</button>
  </div>
</template>

<script>
  export default {
    props: ['foo'],
    methods: {
      sendMsg() {
        this.$emit('out', 'msg')
      }
    }
  }
</script>

效果图


props和$emit传值效果图

2. vuex

https://vuex.vuejs.org/

3. 依赖注入

使用场景

当组件嵌套过多,而且所有组件都需要使用根组件(包括但不限于)的某一些内容时(数据或方法),使用依赖注入会比普通的传值更加方便

使用

// 依赖注入一个getMap方法
provide: function () {
  return {
    getMap: this.getMap
  }
}

然后在任何子组件里,我们都可以使用 inject 选项来接收指定的我们想要添加在这个实例上的属性:

inject: ['getMap']

相比于$parent,选择依赖注入的好处

使用依赖注入可以让我们免于暴露整个根组件信息,具体有两点

  • 祖先组件不需要知道哪些后代组件使用它提供的属性
  • 后代组件不需要知道被注入的属性来自哪里

4. 使用$emit/$on,模拟发布订阅模式

这里需要利用一个空的vue对象当做事件中心,可以实现组件间的通讯

目录结构


目录结构
// event.js创建一个新的vue实例
import Vue from 'vue'
const Event = new Vue()

export default Event

// index.vue
<template>
  <div> 
    父组件 {{msg}}
    <child-com01></child-com01>
    <child-com02></child-com02>
  </div>
</template>

<script>
  import Event from './components/event'

  const childCom01 = () => import('./components/child01')
  const childCom02 = () => import('./components/child02')
  
  export default {
    components: {
      childCom01,
      childCom02
    },
    data() {
      return {
        msg: ''
      }
    },
    mounted() { // 因为不知道什么时候会触发方法,所以一般会选择在created或者是mounted的时候绑定
      Event.$on('getMsg', v => this.msg = v) //箭头函数内部不会产生新的this,这边如果不用=>,this指代Event
    }
  }
</script>

// child01.vue
<template>
  <div>
    子组件01 {{msg}}
  </div>
</template>

<script>
  import Event from './event'
  export default {
    mounted() {
      Event.$on('getMsg', v => this.msg = v)
    },
    data() {
      return {
        msg: ''
      }
    }
  }
</script>

// child02.vue
<template>
  <div>
    <h2>子组件02</h2>
    <button @click="sendMsg">to 父组件和兄弟组件</button>
  </div>
</template>

<script>
  import Event from './event'
  export default {
    methods: {
      sendMsg() {
        Event.$emit('getMsg', 'child02的数据')
      }
    }
  }
</script>
点击之后效果

注意: 在使用$on绑定事件之后,需要主动销毁事件
例如

beforeDestroy () {
  Event.$off('getMsg')
}

5. 使用$attrs/$listeners

在父组件通过v-bind绑定,但是在子组件中未被props声明的属性可以通过$attrs获取到。

$listeners包含了父作用域中的 (不含 .native 修饰器的) v-on 事件监听器


目录结构
// index.vue
<template>
  <div> 
    父组件
    <child-com01 :msg1="msg1" :msg2="msg2" :msg3="msg3" :msg4="msg4" @indexfuc="indexfuc" @indexfuc2="indexfuc2" @indexfuc3="indexfuc3"></child-com01>
  </div>
</template>

<script>

  const childCom01 = () => import('./components/child01')
  
  export default {
    components: {
      childCom01
    },
    data() {
      return {
        msg1: 'm1',
        msg2: 'm2',
        msg3: 'm3',
        msg4: 'm4'
      }
    },
    methods: {
      indexfuc() {
        console.log('根组件方法1')
      },
      indexfuc2() {
        console.log('根组件方法2')
      },
      indexfuc3() {
        console.log('根组件方法3')
      }
    }
  }
</script>

// child01.vue
<template>
  <div>
    子组件01收到的数据 {{$attrs}}
    props接收的数据{{msg1 + ' ' + msg2}}
    <child-com02 v-bind="$attrs" v-on="$listeners"></child-com02>
  </div>
</template>

<script>
  const childCom02 = () => import('./child02')

  export default {
    components: {
      childCom02
    },
    props: ['msg1', 'msg2'],
    mounted() {
      console.log(this.$attrs, '---child1中')
      console.log(this.$listeners, '---child1中')
      this.$listeners.indexfuc2()
    }
  }
</script>

// child02.vue
<template>
  <div>
    子组件02收到的数据 {{$attrs}}
  </div>
</template>
<script>
export default {
  mounted() {
    console.log(this.$listeners, '---child02中')
    this.$listeners.indexfuc3()
  }
}
</script>

执行结果

这里的child02是child01的子组件,三个组件是嵌套关系,child02可以拿到全部的属性和方法

6. $refs和$parent、$children

使用ref给组件赋值一个ID

<base-input ref="usernameInput"></base-input>

之后使用this.$refs.usernameInput来访问这个组件

this.$refs.usernameInput

或者在组件中使用来获取数据

this.$parent
this.$children

但是这几种无法实现跨级或兄弟组件之间传递消息,在使用过程中,应该酌情使用以上几种方法

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,937评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,503评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,712评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,668评论 1 276
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,677评论 5 366
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,601评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,975评论 3 396
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,637评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,881评论 1 298
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,621评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,710评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,387评论 4 319
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,971评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,947评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,189评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 44,805评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,449评论 2 342

推荐阅读更多精彩内容