前言
我们平时做一个工程项目,每个功能模块之间是相互独立的,彼此之间按理历史自理门户的,但是难眠会相互通信,而且还要向“皇上”(中央)汇报工作。vue组件是一个非常强大的功能,而组件实例的作用域是相互独立的,这就意味着不同组件之间的数据无法相互引用。所以如何传递数据也就成了组件需要解决的难题。
组件
1、父子组件
父子关系既是组件A在它的模版中使用了组件B,那么组件A就是父组件,组件B就是子组件。
// 注册一个子组件
Vue.component('child', {
data: function(){
return {
text: '我是father的子组件!'
}
},
template: '<span>{{ text }}</span>'
})
// 注册一个父组件
Vue.component('father', {
template: '<div><child></child></div>' // 在模板中使用了child组件
})
在父组件中使用:
<div id="app">
<father></father>
</div>
页面中就会渲染出 :我是father的子组件!
father 组件在模板中使用了 child 组件,所以它就是父组件,child 组件被使用,所以 child 组件就是子组件。
2、兄弟组件
Vue.component('brother1', {
template: '<div>我是大哥</div>'
})
Vue.component('brother2', {
template: '<div>我是小弟</div>'
})
使用:
<div id="app">
<brother1></brother1>
<brother2></brother2>
</div>
如何传递数据
在父组件 father.vue 中引用子组件 child.vue,把 name 的值传给 child 组件。
<template>
<div class="app">
// message 定义在子组件的 props 中
<child :message="name"></child>
</div>
</template>
<script>
import child from './child.vue';
export default {
components: {
child
},
data() {
return {
name: 'linxin'
}
}
}
</script>
在子组件 child.vue 中的 props 选项中声明它期待获得的数据
<template>
<span>Hello {{message}}</span>
</template>
<script>
export default {
// 在 props 中声明获取父组件的数据通过 message 传过来
props: ['message']
}
</script>
单向数据流
当父组件的 name 发生改变,子组件也会自动地更新视图。但是在子组件中,我们不要去修改 prop。如果你必须要修改到这些数据,你可以使用以下方法:
方法一:把 prop 赋值给一个局部变量,然后需要修改的话就修改这个局部变量,而不影响 prop
export default {
data(){
return {
newMessage: null
}
},
props: ['message'],
created(){
this.newMessage = this.message;
}
}
方法二:在计算属性中对 prop 进行处理
export default {
props: ['message'],
computed: {
newMessage(){
return this.newMessage + ' 哈哈哈';
}
}
}
自定义事件
prop 是单向绑定的:当父组件的属性变化时,将传导给子组件,但是不会反过来。修改子组件的 prop 值,是不会传回给父组件去更新视图的。那么子组件要如何去与父组件通讯呢?
那就是自定义事件。通过在父组件 $on(eventName) 监听自定义事件,当子组件里 $emit(eventName) 触发该自定义事件的时候,父组件执行相应的操作。
比如在父组件中控制一个弹框子组件的显示,在子组件中按下关闭之后,告诉父组件去隐藏它,然后父组件就执行操作隐藏弹框。
<template>
<div class="app">
// hide 为自定义事件,名字可以自己随便起,不能有大写字母,可以使用短横线
// @hide 监听子组件触发 hide 事件,则会执行 hideDialog 方法
<dialog :is-show="show" @hide="hideDialog"></dialog>
<button @click="showDialog">显示弹框</button>
</div>
</template>
<script>
import dialog from './dialog.vue';
export default {
components: { dialog },
data() {
return {
show: false
}
},
methods: {
showDialog() {
this.show = true;
},
hideDialog() {
this.show = false;
}
}
}
</script>
在子组件 dialog.vue 中:
<template>
<div class="dialog" v-show="isShow">
<p>这里是弹框子组件</p>
<button @click="toHide">关闭弹框</button>
</div>
</template>
<script>
export default {
// 驼峰式命名的 prop 需要转换为相对应的短横线隔开式 is-show
props: ['isShow'],
methods: {
toHide(){
// $emit 方法触发父组件的监听事件
this.$emit('hide');
}
}
}
</script>
Event Bus
有时候两个组件之间需要进行通信,但是它们彼此不是父子组件的关系。在一些简单场景,你可以使用一个空的 Vue 实例作为一个事件总线中心(central event bus):
var bus = new Vue();
// 在组件 A 的 methods 方法中触发事件
bus.$emit('say-hello', 'world')
// 在组件 B 的 created 钩子函数中监听事件
bus.$on('say-hello', function (arg) {
console.log('hello ' + arg); // hello world
})
Vuex
在复杂场景中,你应该考虑使用专门的状态管理模式 Vuex。
总结
组件通讯并不是一定要使用必须要使用 Vuex,对于一些简单的数据传递,event bus 或者 prop 也可以完成。本文主要是对组件传参的一些基础知识点的记录。