文章目录
- 人工智能福利文章
- Vue组件间通信分类
- 1.props / $emit
- 1.1 父组件向子组件传值
- 1.2 子组件向父组件传值
- 2.$parent / $children
- 3.ref / $refs
- 3.1 ref作用于组件
- 3.2 ref作用于Html标签
- 3.3 $nextTick()
- 4.EventBus ($emit / $on)
- 4.1 初始化
- 4.2 发送事件
- 4.3 接收事件
- 4.4 移除事件监听者
- 5. a t t r s / attrs/ attrs/listeners
- 6.provide / inject
- 7.Vuex
- 7.1 Vuex 的状态存储是响应式的
- 7.2 Vuex模块简介
- 8. localStorage或者sessionStorage
- 9.slot
- 总结
- 写在最后
人工智能福利文章
- 【分享几个国内免费可用的ChatGPT镜像】
- 【10几个类ChatGPT国内AI大模型】
- 【用《文心一言》1分钟写一篇博客简直yyds】
- 【用讯飞星火大模型1分钟写一个精美的PPT】
Vue组件间通信分类
Vue组件间通信主要指以下 3 类:
父子组件通信、隔代组件通信、兄弟组件通信
下面我们分别介绍每种通信方式且会说明此种方法可适用于哪类组件间通信。
1.props / $emit
适用于父子组件通信
这种方法是 Vue 组件的基础。
1.1 父组件向子组件传值
下面通过一个例子说明父组件如何向子组件传递数据:在子组件article.vue中如何获取父组件section.vue中的数据articles
// 父组件 section.vue<template><div class="section"><com-article :articles="articleList"></com-article></div></template><script>import comArticle from './article.vue'export default {components: { comArticle },data() {return {articleList: ['水浒传', '红楼梦','西游记', '三国演义']}}}</script>// 子组件 article.vue<template><div><span v-for="(item, index) in articles" :key="index">{{item}} </span></div></template><script>export default {props: ['articles']}</script>
1.2 子组件向父组件传值
$emit绑定一个自定义事件, 当这个语句被执行时, 就会将参数args传递给父组件,父组件通过v-on监听并接收参数。 通过一个例子,说明子组件如何向父组件传递数据。 在上个例子的基础上, 点击页面渲染出来的ariticle的item, 父组件中显示在数组中的下标
// 父组件 section.vue<template><div class="section"><com-article :articles="articleList" @onEmitIndex="onEmitIndex"></com-article><p>{{currentIndex}}</p></div></template><script>import comArticle from './article.vue'export default {components: { comArticle },data() {return {currentIndex: -1,articleList: ['水浒传', '红楼梦','西游记', '三国演义']}},methods: {onEmitIndex(idx) {this.currentIndex = idx}}}</script><template><div><div v-for="(item, index) in articles" :key="index" @click="emitIndex(index)">{{item}}</div></div></template><script>export default {props: ['articles'],methods: {emitIndex(index) {this.$emit('onEmitIndex', index)}}}</script>
2.$parent / $children
适用于父子组件通信
$parent / $children:访问父 / 子实例
// 父组件中<template><div class="hello_world"><div>{{msg}}</div><com-a></com-a><button @click="changeA">点击改变子组件值</button></div></template><script>import ComA from './comA.vue'export default {components: { ComA },data() {return {msg: 'hello world'}},methods: {changeA() {// 获取到子组件Athis.$children[0].messageA = 'this is new value'}}}</script>// 子组件中<template><div class="com_a"><span>{{messageA}}</span><p>获取父组件的值为: {{parentVal}}</p></div></template><script>export default {data() {return {messageA: 'this is old'}},computed:{parentVal(){return this.$parent.msg;}}}</script>
3.ref / $refs
ref 被用来给元素或子组件注册引用信息, 引用信息将会注册在父组件的 $refs 对象上,如果是在普通的DOM元素上使用,引用指向的就是 DOM 元素,如果是在子组件上,引用就指向组件的实例。
$refs是一个对象,持有已注册过 ref的所有的子组件。
3.1 ref作用于组件
<div id="app"><navbar></navbar><pagefooter></pagefooter>
</div>
Vue.component('navbar',{template:'#navbar',data:function () {return {navs:[]}}
});Vue.component('pagefooter',{template:'#pagefooter',data:function () {return {footer:''}}
});
new Vue({el:'#app',mounted:function () {//ready,//这里怎么直接访问navbar的navs和pagefooter的footer值呢,}
})
这就用到ref了
修改组件
<div id="app"><navbar ref="navbar"></navbar><pagefooter ref="pagefooter"></pagefooter>
</div>
new Vue({el:'#app',mounted:function () {//ready,//这里怎么直接访问navbar的navs和pagefooter的footer值呢,console.log(this.$refs.navbar.navs);console.log(this.$refs.pagefooter.footer);}
})
通过ref和refs,父组件可以轻松获取子组件的信息。
3.2 ref作用于Html标签
<!DOCTYPE html>
<html lang="en">
<head><meta charset="UTF-8"><title>Title</title><script src="https://cdn.jsdelivr.net/npm/vue@2.6.14/dist/vue.js"></script>
</head>
<body>
<div id="app"><p ref="thisP">{{name}}</p>
</div>
<script>var vm = new Vue({data:{name:'Tom'}}).$mount("#app")console.log(vm.$refs.thisP.textContent);
</script>
</body>
</html>
上面这个例子可以获取P标签中的文本信息。这样就不需要给P标签设一个id,再document.getElementById('xx),相当麻烦。
3.3 $nextTick()
<script>var vm = new Vue({data:{name:'Tom'}}).$mount("#app")vm.name='Jerry';console.log(vm.$refs.thisP.textContent); // Tomvm.$nextTick(function () {console.log(vm.$refs.thisP.textContent); // Jerry})
</script>
当你打印console.log(vm.$refs.thisP.textContent);时,此时标签的文本内容还是’Tom’。()
但我想获取Dom更新的数据啊,我想获取到的是’Jerry’。怎么办?
使用Vue.nextTick()在下次 DOM 更新循环结束之后执行延迟回调。在修改数据之后立即使用这个方法,获取更新后的 DOM.
this.$nextTick(() => {console.log(vm.$refs.thisP.textContent);
})
4.EventBus ($emit / $on)
适用于隔代组件通信
eventBus 又称为事件总线,在vue中可以使用它来作为沟通桥梁的概念, 就像是所有组件共用相同的事件中心,可以向该中心注册发送事件或接收事件, 所以组件都可以通知其他组件。
eventBus也有不方便之处, 当项目较大,就容易造成难以维护的灾难
在Vue的项目中怎么使用eventBus来实现组件之间的数据通信呢?具体通过下面几个步骤
4.1 初始化
首先需要创建一个事件总线并将其导出, 以便其他模块可以使用或者监听它.
// event-bus.jsimport Vue from 'vue'export const EventBus = new Vue()
4.2 发送事件
假设你有两个组件: additionNum 和 showNum, 这两个组件可以是兄弟组件也可以是父子组件;这里我们以兄弟组件为例:
<template><div><show-num-com></show-num-com><addition-num-com></addition-num-com></div></template><script>import showNumCom from './showNum.vue'import additionNumCom from './additionNum.vue'export default {components: { showNumCom, additionNumCom }}</script>// addtionNum.vue 中发送事件<template><div><button @click="additionHandle">+加法器</button> </div></template><script>import {EventBus} from './event-bus.js'console.log(EventBus)export default {data(){return{num:1}},methods:{additionHandle(){EventBus.$emit('addition', {num:this.num++})}}}</script>
4.3 接收事件
// showNum.vue 中接收事件<template><div>计算和: {{count}}</div></template><script>import { EventBus } from './event-bus.js'export default {data() {return {count: 0}},mounted() {EventBus.$on('addition', param => {this.count = this.count + param.num;})}}</script>
这样就实现了在组件addtionNum.vue中点击相加按钮, 在showNum.vue中利用传递来的 num 展示求和的结果.
4.4 移除事件监听者
如果想移除事件的监听, 可以像下面这样操作:
import { eventBus } from 'event-bus.js'EventBus.$off('addition', {})
5. a t t r s / attrs/ attrs/listeners
适用于隔代组件通信
a t t r s :包含了父作用域中不被 p r o p 所识别 ( 且获取 ) 的特性绑定 ( c l a s s 和 s t y l e 除外 ) 。当一个组件没有声明任何 p r o p 时,这里会包含所有父作用域的绑定 ( c l a s s 和 s t y l e 除外 ) ,并且可以通过 v − b i n d = " attrs:包含了父作用域中不被 prop 所识别 (且获取) 的特性绑定 ( class 和 style 除外 )。当一个组件没有声明任何 prop 时,这里会包含所有父作用域的绑定 ( class 和 style 除外 ),并且可以通过 v-bind=" attrs:包含了父作用域中不被prop所识别(且获取)的特性绑定(class和style除外)。当一个组件没有声明任何prop时,这里会包含所有父作用域的绑定(class和style除外),并且可以通过v−bind="attrs" 传入内部组件。通常配合 inheritAttrs 选项一起使用。
l i s t e n e r s :包含了父作用域中的 ( 不含 . n a t i v e 修饰器的 ) v − o n 事件监听器。它可以通过 v − o n = " listeners:包含了父作用域中的 (不含 .native 修饰器的) v-on 事件监听器。它可以通过 v-on=" listeners:包含了父作用域中的(不含.native修饰器的)v−on事件监听器。它可以通过v−on="listeners" 传入内部组件。
接下来看一个跨级通信的例子:
// app.vue// index.vue<template><div><child-com1:name="name":age="age":gender="gender":height="height"title="hello"></child-com1></div></template><script>const childCom1 = () => import("./childCom1.vue");export default {components: { childCom1 },data() {return {name: "zhangsan",age: "18",gender: "女",height: "158"};}};</script>// childCom1.vue<template class="border"><div><p>name: {{ name}}</p><p>childCom1的$attrs: {{ $attrs }}</p><child-com2 v-bind="$attrs"></child-com2></div></template><script>const childCom2 = () => import("./childCom2.vue");export default {components: {childCom2},inheritAttrs: false, // 可以关闭自动挂载到组件根元素上的没有在props声明的属性props: {name: String // name作为props属性绑定},created() {console.log(this.$attrs);// { "age": "18", "gender": "女", "height": "158", "title": "hello" }}};</script>// childCom2.vue<template><div class="border"><p>age: {{ age}}</p><p>childCom2: {{ $attrs }}</p></div></template><script>export default {inheritAttrs: false,props: {age: String},created() {console.log(this.$attrs); // { "gender": "女", "height": "158", "title": "hello" }}};</script>
6.provide / inject
适用于隔代组件通信
祖先组件中通过 provider 来提供变量,然后在子孙组件中通过 inject 来注入变量。
provide / inject API 主要解决了跨级组件间的通信问题,不过它的使用场景,主要是子组件获取上级组件的状态,跨级组件间建立了一种主动提供与依赖注入的关系。
注意: 这里不论子组件嵌套有多深, 只要调用了inject 那么就可以注入provide中的数据,而不局限于只能从当前父组件的props属性中回去数据
举例验证
接下来就用一个例子来验证上面的描述: 假设有三个组件: A.vue、B.vue、C.vue 其中 C是B的子组件,B是A的子组件。
// A.vue<template><div><comB></comB></div></template><script>import comB from './comB.vue'export default {name: "A",provide: {for: "demo"},components:{comB}}</script>// B.vue<template><div>{{demo}}<comC></comC></div></template><script>import comC from './comC.vue'export default {name: "B",inject: ['for'],data() {return {demo: this.for}},components: {comC}}</script>// C.vue<template><div>{{demo}}</div></template><script>export default {name: "C",inject: ['for'],data() {return {demo: this.for}}}</script>
7.Vuex
适用于父子、隔代、兄弟组件通信
Vuex 是一个专为 Vue.js 应用程序开发的状态管理模式。每一个 Vuex 应用的核心就是 store(仓库)。“store” 基本上就是一个容器,它包含着你的应用中大部分的状态 ( state )。
7.1 Vuex 的状态存储是响应式的
当 Vue 组件从 store 中读取状态的时候,若 store 中的状态发生变化,那么相应的组件也会相应地得到高效更新。
改变 store 中的状态的唯一途径就是显式地提交 (commit) mutation。这样使得我们可以方便地跟踪每一个状态的变化。
7.2 Vuex模块简介
state:用于数据的存储,是store中的唯一数据源
getters:如vue中的计算属性一样,基于state数据的二次包装,常用于数据的筛选和多个数据的相关性计算
mutations:类似函数,改变state数据的唯一途径,且不能用于处理异步事件
actions:类似于mutation,用于提交mutation来改变状态,而不直接变更状态,可以包含任意异步操作
modules:类似于命名空间,用于项目中将各个模块的状态分开定义和操作,便于维护
8. localStorage或者sessionStorage
这种通信比较简单,缺点是数据和状态比较混乱,不太容易维护。
通过window.localStorage.getItem(key)获取数据
通过window.localStorage.setItem(key,value)存储数据
注意用JSON.parse()和JSON.stringify() 做数据格式转换, localStorage或者sessionStorage可以结合vuex, 实现数据的持久保存,同时使用vuex解决数据和状态混乱问题。
9.slot
把子组件的数据通过插槽的方式传给父组件使用,然后再插回来。
// Child.vue
<template><div><slot :user="user"></slot></div>
</template>
export default{data(){return {user:{ name:"xxx" }}}
}// Parent.vue
<template><div><child v-slot="slotProps">{{ slotProps.user.name }}</child></div>
</template>
总结
常见使用场景可以分为三类:
父子组件通信: props/ e m i t 、 emit、 emit、parent/ c h i l d r e n 、 p r o v i d e / i n j e c t 、 r e f / children、 provide/inject 、 ref/ children、provide/inject、ref/refs 、 a t t r s / attrs/ attrs/listeners、slot
兄弟组件通信: eventBus 、 Vuex
祖孙组件通信: eventBus、 Vuex、 provide / inject 、 $attrs / $listeners
写在最后
✨ 原创不易,希望各位大佬多多支持。
👍 点赞,你的认可是我创作的动力。
⭐️ 收藏,感谢你对本文的喜欢。
✏️ 评论,你的反馈是我进步的财富。