父子组件之间通信的方式

  • 父子组件之间如何进行通信呢?
    • 父组件传递给子组件:通过props属性;
    • 子组件传递给父组件:通过$emit触发事件;

父组件传递给子组件

  • 在开发中很常见的就是父子组件之间通信,比如父组件有一些数据,需要子组件来进行展示:
    • 这个时候我们可以通过props来完成组件之间的通信;
  • 什么是Props呢?
    • Props是你可以在组件上注册一些自定义的attribute
    • 父组件给这些attribute赋值,子组件通过attribute的名称获取到对应的值
  • Props有两种常见的用法:
    • 方式一:字符串数组,数组中的字符串就是attribute的名称;
    • 方式二:对象类型,对象类型我们可以在指定attribute名称的同时,指定它需要传递的类型、是否是必须的、默认值等等;

APP.vue

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<template>
<!-- 1.展示why的个人信息 -->
<!-- 如果当前的属性是一个非prop的attribute, 那么该属性会默认添加到子组件的根元素上 -->
<show-info name="why" :age="18" :height="1.88"
address="广州市" abc="cba" class="active" />

<!-- 2.展示kobe的个人信息 -->
<show-info name="kobe" :age="30" :height="1.87" />

<!-- 3.展示默认的个人信息 -->
<show-info :age="100" show-message="哈哈哈哈"/>

</template>

<script>
import ShowInfo from './ShowInfo.vue'

export default {
components: {
ShowInfo
}
}
</script>

<style scoped>
</style>


showInfo.vue

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<template>
<div class="infos">
<h2 :class="$attrs.class">姓名: {{ name }}</h2>
<h2>年龄: {{ age }}</h2>
<h2>身高: {{ height }}</h2>

<h2>Message: {{ showMessage }}</h2>
</div>

<div class="others" v-bind="$attrs"></div>
</template>

<script>
export default {
// inheritAttrs: false,

// 作用: 接收父组件传递过来的属性
// 1.props数组语法
// 弊端: 1> 不能对类型进行验证 2.没有默认值的
// props: ["name", "age", "height"]

// 2.props对象语法(必须掌握)
props: {
name: {
type: String,
default: "我是默认name"
},
age: {
type: Number,
required: true,
default: 0
},
height: {
type: Number,
default: 2
},
// 重要的原则: 对象类型写默认值时, 需要编写default的函数, 函数返回默认值
friend: {
type: Object,
default() {
return { name: "james" }
}
},
hobbies: {
type: Array,
default: () => ["篮球", "rap", "唱跳"]
},
showMessage: {
type: String,
default: "我是showMessage"
}
}
}
</script>

<style scoped>
</style>


细节:Prop 的大小写命名

  • Prop 的大小写命名
  • HTML 中的 attribute 名是大小写不敏感的,所以浏览器会把所有大写字符解释为小写字符;
    • 这意味着当你使用 DOM 中的模板时,camelCase (驼峰命名法) 的 prop 名需要使用其等价的 kebab-case (短横线分隔命名) 命名;

非Prop的Attribute

  • 什么是非Prop的Attribute呢?
    • 当我们传递给一个组件某个属性,但是该属性并没有定义对应的props或者emits时,就称之为 非Prop的Attribute;
    • 常见的包括class、style、id属性等;
  • Attribute继承
    • 组件有单个根节点时,非Prop的Attribute将自动添加到根节点的Attribute中:

禁用Attribute继承和多根节点

  • 如果我们不希望组件的根元素继承attribute,可以在组件中设置 inheritAttrs: false
    • 禁用attribute继承的常见情况需要将attribute应用于根元素之外的其他元素
    • 我们可以通过 $attrs来访问所有的 非props的attribute
  • 多个根节点的attribute
    • 多个根节点的attribute如果没有显示的绑定,那么会报警告,我们必须手动的指定要绑定到哪一个属性上:

子组件传递给父组件

  • 什么情况下子组件需要传递内容到父组件呢?
    • 当子组件有一些事件发生的时候,比如在组件中发生了点击,父组件需要切换内容;
    • 子组件有一些内容想要传递给父组件的时候;
  • 我们如何完成上面的操作呢?
    • 首先,我们需要在子组件中定义好在某些情况下触发的事件名称
    • 其次,在父组件中以v-on的方式传入要监听的事件名称,并且绑定到对应的方法中;
    • 最后,在子组件中发生某个事件的时候,根据事件名称触发对应的事件

自定义事件的流程

  • 我们封装一个CounterOperation.vue的组件:
    • 内部其实是监听两个按钮的点击,点击之后通过 this.$emit的方式发出去事件;

自定义事件的参数和验证

  • 自定义事件的时候,我们也可以传递一些参数给父组件:
  • 在vue3当中,我们可以对传递的参数进行验证:

组件间通信案例练习

App.vue

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<template>
<div class="app">
<!-- 1.tab-control -->
<tab-control :titles="['衣服', '鞋子', '裤子']"
@tab-item-click="tabItemClick"/>

<!-- <tab-control :titles="['流行', '最新', '优选']"/> -->

<!-- 2.展示内容 -->
<h1>{{ pageContents[currentIndex] }}</h1>
</div>
</template>

<script>
import TabControl from './TabControl.vue'

export default {
components: {
TabControl
},
data() {
return {
pageContents: [ "衣服列表", "鞋子列表", "裤子列表" ],
currentIndex: 0
}
},
methods: {
tabItemClick(index) {
console.log("app:", index)
this.currentIndex = index
}
}
}
</script>

<style scoped>
</style>


TabControl.vue

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<template>
<div class="tab-control">
<template v-for="(item, index) in titles" :key="item">
<div class="tab-control-item"
:class="{ active: index === currentIndex }"
@click="itemClick(index)">
<span>{{ item }}</span>
</div>
</template>
</div>
</template>

<script>
export default {
props: {
titles: {
type: Array,
default: () => []
}
},
data() {
return {
currentIndex: 0
}
},
emits: ["tabItemClick"],
methods: {
itemClick(index) {
this.currentIndex = index
this.$emit("tabItemClick", index)
}
}
}
</script>

<style scoped>
.tab-control {
display: flex;
height: 44px;
line-height: 44px;
text-align: center;
}

.tab-control-item {
flex: 1;
}

.tab-control-item.active {
color: red;
font-weight: 700;
}

.tab-control-item.active span {
border-bottom: 3px solid red;
padding: 8px;
}
</style>