Vue父子组件之间的相互通信
组件是Vue知识体系中最重要的一部分之一,父子组件由于作用域的不同,无法直接对对方的数据进行操作。它们之间的数据传递都是通过中间介质进行的,父组件给子组件传值是通过props属性,而子组件给父组件传值是通过自定义事件。
1.父组件向子组件传值
<div id="app">
<parent></parent>
</div> <template id="parent">
<div>
<div style="border:1px solid red;width: 300px;">
<h1>父组件</h1>
<p>{{parentMsg}}</p>
</div>
<child :get-parent="parentMsg"></child>
</div>
</template> <template id="child">
<div>
<h1>子组件</h1>
<p>{{childMsg}}</p>
<button @click="printParentMsg()">父组件信息</button>
</div>
</template> <script> var child={
data(){
return {
childMsg:"我是子组件数据"
}
},
template:"#child",
props: ['getParent'],
methods: {
printParentMsg(){
alert('父组件信息:' + this.getParent);
}
}
}; var parent={ data(){
return {
parentMsg:"我是父组件的数据"
}
}, components:{
'child':child
}, template: '#parent'
} new Vue({
el:"#app",
components:{
'parent':parent
}
}); </script>
具体方法:
1.子组件在props中创建一个属性,用来接收父组件传来的值
2.父组件中注册子组件
3.在父组件模板中的子组件标签添加对应于子组件props中的属性
4.把需要传递的值赋给上一步子组件标签创建的属性(这里要注意的是props中的属性用驼峰命名法,标签中的属性用横杠命名法)
2.子组件向父组件传值
<div id="app">
<parent></parent>
</div> <template id="parent">
<div>
<div style="border:1px solid red;width: 300px;">
<h1>父组件</h1>
<p>{{parentMsg}}</p>
</div>
<child v-on:receive-msg="handleMsg"></child>
</div>
</template> <template id="child">
<div>
<h1>子组件</h1>
<p>{{childMsg}}</p>
<button @click="sendToParent">传递信息</button>
</div>
</template> <script> var child={
data(){
return {
childMsg:"我是子组件数据"
}
},
template:"#child",
props: ['getParent'],
methods: {
sendToParent(){
console.log('sendToparent')
this.$emit("receive-msg", "已经收到子组件传来的消息");
}
}
}; var parent={ data(){
return {
parentMsg:"我是父组件的数据"
}
}, components:{
'child':child
}, template: '#parent', methods: {
handleMsg: function(msg){
console.log('handleMsg')
alert(msg);
}
}
} new Vue({
el:"#app",
components:{
'parent':parent
}
}); </script>
具体方法:
1.子组件在某种条件下触发一个自定义事件
2.该自定义事件需要挂载在父组件的子组件标签上,让父组件可以监听到这个自定义事件
3.将需要传的值放在$emit方法的第二个参数上,该值将作为实参传递给响应自定义事件的方法
(注意!这里有个小坑:自定义事件貌似不支持驼峰命名法,改用横杠命名即可,否则会接收不到值)
Vue父子组件之间的相互通信的更多相关文章
- VUE 自定义组件之间的相互通信
一.自定义组件 1.全局自定义组件 我们在var vm = new Vue({});的上面并列写上Vue.component('自定义组件名',{组件对象});来完成全局自定义组件的声明.示例代码如下 ...
- 【转】vue父子组件之间的通信
vue父子组件之间的通信 在vue组件通信中其中最常见通信方式就是父子组件之中的通性,而父子组件的设定方式在不同情况下又各有不同.最常见的就是父组件为控制组件子组件为视图组件.父组件传递数据给子组件使 ...
- VUE 父子组件之间通信传值 props和 $emit
1.父组件传值给子组件 $props,子组件传值给父组件 $emit 父组件 <div id="app" > <tr ...
- 浅谈vue父子组件之间的传值
前言:本章主要说下父子组件的传值,为商品列表组件之间的传值做一个基础预热.Github:https://github.com/Ewall1106/mall(请选择分支chapter23) 1.父组件向 ...
- vue父子组件之间传值
vue父子组件进行传值 vue中的父子组件,什么是父组件什么是子组件呢?就跟html标签一样,谁包裹着谁谁就是父组件,被包裹的元素就是子组件. 父组件向子组件传值 下面用的script引入的方式,那种 ...
- vue父子组件之间互相获取data值&调用方法(非props)
vue 子组件调用父组件方法&数据 vue有$parent这么一个属性,在子组件中就能拿到父组件的数据 this.$parent.xxx 就能调用父组件的方法 this.$parent.xxx ...
- vue父子组件之间的通信
利用props在子组件接受父组件传过来的值1.父组件parentComp.vue <template> <childComp :fromParentToChild="fro ...
- Vue父子组件之间通信
1.父 -> 子.通过props //father.vue <template> <div id="father"> <div><l ...
- vue父子组件之间相互传值
1. 子组件使用父组件方法,并向父组件传值 子组件代码 <template> <div class="menu"> <div class=" ...
随机推荐
- css---遮罩层
<div id="body"> 显示页面的全部内容 <div id="open">打开弹框</div> </div&g ...
- [转载:Q1mi]Bootstrap和基于Bootstrap的登录验证示例
转载自:Q1mi Bootstrap介绍 Bootstrap是Twitter开源的基于HTML.CSS.JavaScript的前端框架. 它是为实现快速开发Web应用程序而设计的一套前端工具包. 它支 ...
- 「【算法进阶0x30】数学知识A」作业简洁总结
t1-Prime Distance 素数距离 大范围筛素数. t2-阶乘分解 欧拉筛素数后,按照蓝皮上的式子筛出素数. 复杂度:O(nlogn) t3-反素数ant 搜索 t4-余数之和 整除分块+容 ...
- <数据结构基础学习>(三)Part 2 队列
一.队列 Queue 队列也是一种线性结构 相比数组,队列对应的操作是数组的子集 只能从一端(队尾)添加元素,只能从另一端(队首)取出元素. (排队) 队列是一种先进先出的数据结构(先到先得)FIFO ...
- shell实战之日志脱敏-2.0
cfg # This is generated to be a configuration file. # kay # // # This is a parameter for crontab and ...
- Python--Linux上安装Python
Linux 上安装 Python 官网下载:https://www.python.org/downloads/ 本文安装包下载链接:https://pan.baidu.com/s/1uL2JyoY_g ...
- 内网ntp时间同步配置
选择局域网中的一台机器作为ntp服务器,在ntp server上安装并启动ntpd客户端上要关闭ntpd,安装ntpdateCentOS7上这两个软件都是自带的,只需根据需要打开或者关闭.注意客户端机 ...
- Springboot 1.简介 及第一个demo
按照官网上的新建一个maven项目,然后将类引入pom.xml文件中 <?xml version="1.0" encoding="UTF-8"?> ...
- 2018年秋季学期《c语言程序设计》编程总结
<c语言程序设计>第四周编程总结 <c语言程序设计>第五周编程总结 <c语言程序设计>第六周编程总结 <c语言程序设计>第七周编程总结 <c语言程 ...
- python time模块和datetime模块
一.time模块 time模块中时间表现的格式主要有三种: a.timestamp时间戳,时间戳表示的是从1970年1月1日00:00:00开始按秒计算的偏移量 b.struct_time时间元组,共 ...