Vue组件通信方式

一、父子组件之间的通信

1、父传子——props

父组件在使用子组件标签中通过字面量来传递值

<template>
	<Childrean :name="name"/>
</template>
<script>
	import Children  from "引用子组件的路径"
	data(){
		return{
			name:"zyy"
		}
	}
</script>

子组件设置props属性,定义接收父组件传递过来的参数

<script>
	props:{
		name:{
			type:String,
			default:"",
			required: true
		}
	}
</script>

2、子传父——$emit 触发自定义事件/ref

- $emit 触发自定义事件

1、子组件通过 e m i t 触 发 自 定 义 事 件 , emit触发自定义事件, emitemit第一个参数为触发的事件,第二个参数为传递的数值。
(1)子组件通过事件触发$emit

<template>
	<button @click="passPar"></button>
</template>
<script>
	data(){
		name:"zyy"
	},
	methods:{
		passPar(){
			this.$emit('add', this.name);  //把name传给父组件
		}
	}
</script>

(2)子组件通过生命周期触发$emit

<template>
</template>
<script>
	data(){
		name:"zyy"
	},
	//生命周期:创建后
	created(){
		this.passPar();
	},
	methods:{
		passPar(){
			this.$emit('add', name);  
		}
	}
</script>

2、父组件绑定监听器获取到子组件传递过来的参数,父组件触发的事件是子组件$emit事件定义的第一个参数,如例子是add

<template>
	<Childrean @add="update"/>
</template>
<script>
	import Children  from "引用子组件的路径"
	data(){
		return{
			name:""
		}
	},
	methods:{
		update(data){
			this.name=data;
		}
	}
</script>
- ref

子组件:

<template>
	<div class=“children”>
		
	</div>
</template>
<script>
	data(){
		name:"zyy"
	},
	methods:{
		passPar(){
			 
		}
	}
</script>

父组件:

<template>
	<Childrean ref="foo"/>
</template>
<script>
	import Children  from "引用子组件的路径"
	data(){
		return{
			name:""
		}
	},
	mounted(){
		this.getData();
	},
	methods:{
		getData(){
			this.$refs.foo;  // 获取子组件实例,通过子组件实例我们就能拿到对应的数据  
			//获取子组件data里的数据
			this.name=this.$refs.foo.name;//获取子组件的属性
		}
	}
</script>

二、兄弟组件之间的通信——EventBus

  1. 创建一个中央事件总线EventBus
  2. 兄弟组件通过$ e m i t 触 发 自 定 义 事 件 , emit触发自定义事件, emitemit第二个参数为传递的数值
  3. 另一个兄弟组件通过$on监听自定义事件

Bus.js

// 创建一个中央时间总线类  
class Bus {  
  constructor() {  
    this.callbacks = {};   // 存放事件的名字  
  }  
  $on(name, fn) {  
    this.callbacks[name] = this.callbacks[name] || [];  
    this.callbacks[name].push(fn);  
  }  
  $emit(name, args) {  
    if (this.callbacks[name]) {  
      this.callbacks[name].forEach((cb) => cb(args));  
    }  
  }  
}  
  
// main.js  
Vue.prototype.$bus = new Bus() // 将$bus挂载到vue实例的原型上  
// 另一种方式  
Vue.prototype.$bus = new Vue() // Vue已经实现了Bus的功能  

Children1.vue

this.$bus.$emit('foo')  

Children2.vue

this.$bus.$on('foo', this.handle)  

三、祖先与后代组件之间的通信——$ parent 或$ root

1、通过共同祖辈$ parent或者$ root搭建通信桥连

兄弟组件

this.$parent.on('add',this.add)

另一个兄弟组件

this.$parent.emit('add')

2、祖先传递数据给子孙:$ attrs 与$ listeners

设置批量向下传属性$attrs和 $ listeners
包含了父级作用域中不作为 prop 被识别 (且获取) 的特性绑定 ( class 和 style 除外)。
可以通过 v-bind=“$attrs” 传⼊内部组件

// child:并未在props中声明foo  
<p>{{$attrs.foo}}</p>  
  
// parent  
<HelloWorld foo="foo"/>  
// 给Grandson隔代传值,communication/index.vue  
<Child2 msg="lalala" @some-event="onSomeEvent"></Child2>  
  
// Child2做展开  
<Grandson v-bind="$attrs" v-on="$listeners"></Grandson>  
  
// Grandson使⽤  
<div @click="$emit('some-event', 'msg from grandson')">  
{{msg}}  
</div>  

3、provide 与 inject

在祖先组件定义provide属性,返回传递的值
祖先组件:

provide(){  
    return {  
        foo:'foo'  
    }  
}  

在后代组件通过inject接收组件传递过来的值
后代组件:

inject:['foo'] // 获取到祖先组件传递过来的值  

四、vuex

  1. 适用场景: 复杂关系的组件数据传递
  2. Vuex作用相当于一个用来存储共享变量的容器
  3. state用来存放共享变量的地方
  4. getter,可以增加一个getter派生状态,(相当于store中的计算属性),用来获得共享变量的值
  5. mutations用来存放修改state的方法。
  6. actions也是用来存放修改state的方法,不过action是在mutations的基础上进行。常用来做一些异步操作

组件派发任务到actions,actions触发mutations中的方法,然后mutations来改变state中的数据,数据变更后响应推送给组件,组件重新渲染
在这里插入图片描述

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值