search
HomeWeb Front-endJS TutorialHow to implement communication between vue parent and child components

This time I will show you how to implement communication between vue parent and child components, and what are the precautions to implement communication between vue parent and child components. The following is a practical case, let's take a look.

Components are one of the most powerful features of vue.js, and the scopes of component instances are independent of each other, which means that data between different components cannot reference each other. Then how to communicate between components has become a key knowledge in Vue. This article will explain how to implement communication between parent and child components through the knowledge points of props, $ref and $emit.

Before talking about how to implement communication, let's first build two components father.vue and child.vue as the basis of the example.

//父组件
<template>
 <p>
  </p>
<h1 id="我是父组件">我是父组件!</h1>
  <child></child>
 
</template>
<script>
import Child from &#39;../components/child.vue&#39;
export default {
 components: {Child},
}
</script>
//子组件
<template>
 <h3 id="我是子组件">我是子组件!</h3>
</template>
<script>
</script>
The codes in these two parts are very clear. The parent component imports the child component through import and registers it in the components attribute. Then the child component can be embedded in the parent using the tag Components. The effect after running father.vue is as follows:

Example effect one

1. Communication through prop

The props option of the child component can receive data from the parent component. That's right, it can only be received. Props are one-way bound, that is, they can only be passed from the parent component to the child component, not the other way around. The delivery methods are also divided into two types:

(1) Static delivery

The child component declares a custom attribute through the props option, and then the parent component You can pass data to subcomponents through this attribute when nesting tags.

 <!-- 父组件 -->
<template>
 <p>
  </p>
<h1 id="我是父组件">我是父组件!</h1>
  <child></child> //通过自定义属性传递数据
 
</template>
<script>
import Child from &#39;../components/child.vue&#39;
export default {
 components: {Child},
}
</script>
 <!-- 子组件 -->
<template>
 <h3 id="message">{{message}}</h3>
</template>
<script>
 export default {
  props: [&#39;message&#39;]  //声明一个自定义的属性
 }
</script>

(2) Dynamic transfer

We already know that we can pass a static value to props as above, but in more cases we need dynamic data. This can be achieved using v-bind. By binding custom properties of props through v-bind, what is passed is not a static

string, it can be an expression, Boolean value, object, etc. any type of value.

 <!-- 父组件 -->
<template>
 <p>
  </p>
<h1 id="我是父组件">我是父组件!</h1>
  <child></child>
  <!-- 这是一个 JavaScript 表达式而不是一个字符串。-->
  <child></child>
  <!-- 用一个变量进行动态赋值。-->
  <child></child>
 
</template>
<script>
import Child from &#39;../components/child.vue&#39;
export default {
 components: {Child},
 data() {
  return {
   a:&#39;我是子组件二!&#39;,
   b:112233,
   msg: &#39;我是子组件三!&#39;+ Math.random()
  }
 }
}
</script>
 <!-- 子组件 -->
<template>
 <h3 id="message">{{message}}</h3>
</template>
<script>
 export default {
  props: [&#39;message&#39;]
 }
</script>
The effect is like this:

Example effect two

2. Implemented through $ref Communication

The official explanation for ref is: ref is used to register reference information for elements or subcomponents. Reference information will be registered on the $refs object of the parent component.

Can’t understand, right? It's normal, I can't understand it either. How should that be understood? Take a look at my explanation:

  1. If ref is used on a subcomponent, it points to the component instance, which can be understood as the index of the subcomponent. It is possible to obtain the subcomponent through $ref.

    Properties and methods defined in.

  2. If ref is used on an ordinary DOM element, the reference points to the DOM element. Through $ref, it is possible to obtain the attribute collection of the DOM and easily access the DOM element. The function is the same as JQ Selectors are similar.

How to achieve communication through $ref? Next, I will implement the function implemented by the above prop using $ref:

<!-- 父组件 -->
<template>
 <p>
  </p>
<h1 id="我是父组件">我是父组件!</h1>
  <child></child>
 
</template>
<script>
 import Child from &#39;../components/child.vue&#39;
 export default {
  components: {Child},
  mounted: function () {
   console.log( this.$refs.msg);
   this.$refs.msg.getMessage(&#39;我是子组件一!&#39;)
  }
 }
</script>
 <!-- 子组件 -->
<template>
 <h3 id="message">{{message}}</h3>
</template>
<script>
 export default {
  data(){
   return{
    message:&#39;&#39;
   }
  },
  methods:{
   getMessage(m){
    this.message=m;
   }
  }
 }
</script>
From the above code, we can find that through ref='msg', the instance of the subcomponent child can be pointed to $ref, and through .msg.getMessage() calls the getMessage method of the subcomponent and passes the parameters to the subcomponent. The following is the content printed by "console.log( this.$refs.msg);", which can give everyone a better understanding of what we get through ref:

console.log

The final effect is like this:

Example effect three

One more thing to add here is that prop and $ The difference between ref:

  1. prop focuses on the transfer of data, it cannot call properties and methods in subcomponents. For usage scenarios such as customizing the title and content when creating an article component, prop is most suitable for use.

  2. $ref 着重于索引,主要用来调用子组件里的属性和方法,其实并不擅长数据传递。而且ref用在dom元素的时候,能使到选择器的作用,这个功能比作为索引更常有用到。

3.通过$emit 实现通信

上面两种示例主要都是父组件向子组件通信,而通过$emit 实现子组件向父组件通信。

对于$emit官网上也是解释得很朦胧,我按我自己的理解是这样的:

vm.$emit( event, arg )

$emit 绑定一个自定义事件event,当这个这个语句被执行到的时候,就会将参数arg传递给父组件,父组件通过@event监听并接收参数。

<template>
 <p>
  </p>
<h1 id="title">{{title}}</h1>
  <child></child>
 
</template>
<script>
 import Child from &#39;../components/child.vue&#39;
 export default {
  components: {Child},
  data(){
   return{
    title:&#39;&#39;
   }
  },
  methods:{
   showMsg(title){
    this.title=title;
   }
 }
 }
</script>
<template>
 <h3 id="我是子组件">我是子组件!</h3>
</template>
<script>
 export default {
  mounted: function () {
   this.$emit(&#39;getMessage&#39;, &#39;我是父组件!&#39;)
  }
 }
</script>

相信看了本文案例你已经掌握了方法,更多精彩请关注php中文网其它相关文章!

推荐阅读:

怎样使用nodejs express配置自签名https服务器

怎样用mpvue构建小程序

The above is the detailed content of How to implement communication between vue parent and child components. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Vue与服务器端通信的刨析:如何处理断网情况Vue与服务器端通信的刨析:如何处理断网情况Aug 10, 2023 am 10:55 AM

Vue与服务器端通信的探析:处理断网情况的策略引言:在现代Web开发中,Vue.js已成为一种广泛使用的前端框架。然而,由于网络环境的不稳定性,处理断网情况是一个需要我们考虑的重要问题。本文将分析如何在Vue中处理断网情况,并给出相应的代码示例。一、断网情况分析在网络状况较好的情况下,Vue可以通过Ajax请求或WebSocket与服务器进行通信。但是,

如何通过PHP与P2P协议实现点对点通信如何通过PHP与P2P协议实现点对点通信Jul 28, 2023 pm 10:13 PM

如何通过PHP与P2P协议实现点对点通信随着互联网的发展,点对点(peer-to-peer,简称P2P)通信逐渐成为一种重要的通信方式。与传统的客户端-服务器通信方式相比,P2P通信具有更好的稳定性和伸缩性。在本文中,我们将介绍如何使用PHP与P2P协议实现点对点通信,并提供相应的代码示例。首先,我们需要了解P2P通信的基本原理。P2P协议允许多台计算机直接

诺基亚计划以 1.85 亿欧元的价格出售其设备管理和服务管理平台业务诺基亚计划以 1.85 亿欧元的价格出售其设备管理和服务管理平台业务Dec 21, 2023 am 08:07 AM

诺基亚今日宣布,将其设备管理和服务管理平台业务以1.85亿欧元的价格出售给Lumine集团,预计明年第一季度完成根据我们的调查发现,Lumine是一家通信和媒体软件公司,最近从ConstellationSoftware分拆出来。作为交易的一部分,预计会有大约500名诺基亚员工加入Lumine据公开资料显示,这些平台的业务主要是诺基亚通过之前两次收购Motive和mFormation形成的。Lumine称其有意恢复Motive品牌,并将其作为一个独立的业务部门Lumine表示,收购价格包括一笔高达

如何使用Swoole实现WebSocket通信如何使用Swoole实现WebSocket通信Nov 07, 2023 pm 12:56 PM

Swoole是一个高性能的PHP协程网络框架,支持异步IO、多进程、多线程、协程等特性。其中,Swoole提供的WebSocket组件可用于实现实时双向通信,是构建实时应用的理想选择。本文将介绍如何使用Swoole实现WebSocket通信,并提供具体的代码示例。一、环境准备在使用Swoole实现WebSocket通信前,需要确保已安装Swoole扩展。可通

Vue组件通信:使用$destroy进行组件销毁通信Vue组件通信:使用$destroy进行组件销毁通信Jul 09, 2023 pm 07:52 PM

Vue组件通信:使用$destroy进行组件销毁通信在Vue开发中,组件通信是非常重要的一个方面。Vue提供了多种方式来实现组件通信,比如props和emit、vuex等。本文将介绍另一种组件通信方式:使用$destroy进行组件销毁通信。在Vue中,每个组件都有一个生命周期,其中包含了一系列的生命周期钩子函数。组件的销毁也是其中之一,Vue提供了一个$de

数据通信中的信道传输速率单位是bps,它表示什么数据通信中的信道传输速率单位是bps,它表示什么Jan 18, 2021 pm 02:58 PM

数据通信中的信道传输速率单位是bps,它表示“位/秒”或“比特/秒”,即数据传输速率在数值上等于每秒钟传输构成数据代码的二进制比特数,也称“比特率”。比特率表示单位时间内传送比特的数目,用于衡量数字信息的传送速度;根据每帧图像存储时所占的比特数和传输比特率,可以计算数字图像信息传输的速度。

5G通信到来,但是5G体验真的完全超越4G吗?5G通信到来,但是5G体验真的完全超越4G吗?Jan 08, 2024 pm 10:30 PM

28日,2023上海世界移动通信大会(MWC2023上海)开幕,“5.5G”成为热门主题,华为副董事长、轮值董事长、CFO孟晚舟在大会上也发表了“拥抱5G变革”的主题演讲,她认为5.5G是5G网络演进的必然之路。“5.5G网络下行万兆、上行千兆、千亿联接、内生智能的网络特征已经明确,从5G到5.5G,将更好地匹配人联、物联、感知、高端制造等场景,孵化更多的商业新机会。”对用户来说,5.5G到底意味着什么?我们还不知道。当行业已在讨论5.5G时?早已普及的5G体验到底如何?5G体验争议:真的比4G

串行通信和并行通信的区别是什么串行通信和并行通信的区别是什么May 16, 2023 am 11:44 AM

串行通信和并行通信的区别:1、并行通信指的是并行通信端口,同时传送八路信号,一次并行传送完整的一个字节信息,串行通信指的是串行通信端口, 在一个方向上只能传送一路信号,传送一个字节信息时,只能一位一位地依次传送;2、并行通信是在同一时刻发送多位数据,串行通信用一根线在不同的时刻发送8位数据;3、并行通信发送速度快,距离短资源占用多,串行通信发送速度慢,距离远资源占用少。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft