如:
我们也可以定义组件的自定义事件,这样定义出来的事件是给组件用的。
步骤:
<template>
<div class="app">
<h1>app组件h1>
<School :getSchoolName="getSchoolName" />
div>
template>
<script>
//引入组件
import School from './components/School'
export default {
name: 'App',
components: {
School
},
data() {
return {
msg:"欢迎!!!"
}
},
methods: {
getSchoolName(name) {
console.log("App收到了学校的名字:",name)
},
}
}
script>
<style>
.app{
background: lightgoldenrodyellow;
}
style>
School.vue
<template>
<div class="demo">
<h2>名字:{{ name}}h2>
<h2>性别:{{ sex }}h2>
<button @click="getSchoolName(schoolName)">把名字给appbutton>
<hr>
div>
template>
<script>
export default {
name:'StudentVue',
props: ['getSchoolName'],
data() {
console.log(this)
return {
schoolName:'nefu',
name:"yang123",
sex:"男"
}
}
}
script>
<style scoped>
.demo{
background: lightsalmon;
}
style>
步骤:
<Student v-on:getName="getStudentName" />
表示将自定义的事件 getName放到Student的实例对象上
父组件定义事件的回调函数(即事件出发之后执行的函数)
触发方法: Student的实例对象(vc)被父组件绑定一个事件getName,所以可以通过vc来触发自定义的事件
vc.$emit('事件名')
子组件通过实例对象触发事件:vc.$emit('事件名',参数名)
触发事件的同时可以传递参数(可以有多个),app组件通过触发自定义事件而触发的函数接收参数,获取子组件的值。
APP.vue
<template>
<div class="app">
<h1>app组件h1>
<Student v-on:getName="getStudentName" />
<School :getSchoolName="getSchoolName" />
div>
template>
<script>
//引入组件
import Student from './components/Student'
import School from './components/School'
export default {
name: 'App',
components: {
Student,
School
},
data() {
return {
msg:"欢迎!!!"
}
},
methods: {
getSchoolName(name) {
console.log("App收到了学校的名字:",name)
},
getStudentName(name) {
console.log("getName被触发了")
console.log("App收到了学生的名字:", name)
}
}
}
script>
<style>
.app{
background: lightgoldenrodyellow;
}
style>
Student.vue
<template>
<div class="demo">
<h2>名字:{{ name}}h2>
<h2>性别:{{ sex }}h2>
<button @click="sendStudentName">把名字给appbutton>
<hr>
div>
template>
<script>
export default {
name:'StudentVue',
data() {
console.log(this)
return {
name:"yang123",
sex:"男"
}
},
methods: {
sendStudentName() {
// 触发Student组件实例身上的getName事件
this.$emit('getName', this.name)
}
}
}
script>
<style scoped>
.demo{
background: lightsalmon;
}
style>
通过ref结合mount()来实现自定义事件
ref
和对应的mount()
,在mount()将自定义的事件绑定给子组件回调函数
由mount()进行调用。<School ref="school" />
可以通过 this.$refs.student
获取School的实例对象,通过$on
为子组件绑定事件。
methods: {
getStudentName(name) {
console.log("getName被触发了")
console.log("App收到了学生的名字:", name)
}
},
mounted() {
this.$refs.student.$on('getName',this.getSchoolName)
}
vc.$emit('事件名')
eg:
app.vue
<template>
<div class="app">
<h1>app组件h1>
<School :getSchoolName="getSchoolName" />
<Student ref="student" />
div>
template>
<script>
//引入组件
import Student from './components/Student'
import School from './components/School'
export default {
name: 'App',
components: {
Student,
School
},
data() {
return {
msg:"欢迎!!!"
}
},
methods: {
getSchoolName(name) {
console.log("App收到了学校的名字:",name)
},
getStudentName(name) {
console.log("getName被触发了")
console.log("App收到了学生的名字:", name)
}
},
mounted() {
this.$refs.student.$on('getName',this.getStudentName)
}
}
script>
<style>
.app{
background: lightgoldenrodyellow;
}
style>
student.vue:
<template>
<div class="demo">
<h2>名字:{{ name}}h2>
<h2>性别:{{ sex }}h2>
<button @click="sendStudentName">把名字给appbutton>
<hr>
div>
template>
<script>
export default {
name:'StudentVue',
data() {
console.log(this)
return {
name:"yang123",
sex:"男"
}
},
methods: {
sendStudentName() {
// 触发Student组件实例身上的getName事件
this.$emit('getName', this.name)
}
}
}
script>
<style scoped>
.demo{
background: lightsalmon;
}
style>
mounted() {
setTimeout(() => {
this.$refs.student.$on('getName', this.getStudentName)
}, 3000)
}
如想要事件只被触发一次
mounted() {
this.$refs.student.$once('getName', this.getStudentName)
}
绑定的事件会出现在组件的实例对象上,所以如果事件不需要了,最好将事件进行解绑。
格式:vc.$off('事件名')
解绑一个自定义事件
vc.$off([事件名1,事件名2,...])
解绑多个自定义事件
vc.$off()
解绑该组件实例的所有的自定义事件
<template>
<div class="demo">
<h2>名字:{{ name}}h2>
<h2>性别:{{ sex }}h2>
<button @click="sendStudentName">把名字给appbutton>
<button @click="unbind">点击解绑getName事件button>
<hr>
div>
template>
<script>
export default {
name:'StudentVue',
data() {
console.log(this)
return {
name:"yang123",
sex:"男"
}
},
methods: {
sendStudentName() {
// 触发Student组件实例身上的getName事件
this.$emit('getName', this.name)
},
unbind() {
this.$off('getName')//解绑一个自定义事件
}
}
}
script>
<style scoped>
.demo{
background: lightsalmon;
}
style>
this.$destroy()
用于销毁组件实例,当组件实例销毁后所有该组件实例的自定义事件全都不奏效。但是原生的js事件是不受影响的eg:click事件
data() {
return {
studentName:''
}
},
methods: {
getStudentName(name) {
console.log("App收到了学生的名字:", name)
this.studentName = name
}
},
eg:使用:
app.vue
<template>
<div class="app">
<h1>app组件h1>
<h1>你好呀{{studentName}}h1>
<Student v-on:getName="getStudentName" />
div>
template>
<script>
//引入组件
import Student from './components/Student'
export default {
name: 'App',
components: {
Student
},
data() {
return {
msg: "欢迎!!!",
studentName:''
}
},
methods: {
getStudentName(name) {
console.log("App收到了学生的名字:", name)
this.studentName = name
}
},
}
script>
<style>
.app{
background: lightgoldenrodyellow;
}
style>
当使用ref方法将获取到的子组件数据展示到页面上时
app.vue:
<template>
<div class="app">
<h1>app组件h1>
<h1>你好呀{{studentName}}h1>
<School :getSchoolName="getSchoolName" />
<Student ref="student" />
div>
template>
<script>
//引入组件
import Student from './components/Student'
import School from './components/School'
export default {
name: 'App',
components: {
Student,
School
},
data() {
return {
msg: "欢迎!!!",
studentName:''
}
},
methods: {
getSchoolName(name) {
console.log("App收到了学校的名字:",name)
},
getStudentName(name) {
console.log("App收到了学生的名字:", name)
this.studentName = name
}
},
mounted() {
this.$refs.student.$on('getName', this.getStudentName)
// this.$refs.student.$once('getName', this.getStudentName)
}
}
script>
<style>
.app{
background: lightgoldenrodyellow;
}
style>
可以将挂在函数mounted()和getStudentName一起写:
mounted() {
this.$refs.student.$on('getName', function (name){
console.log("App收到了学生的名字:", name)
this.studentName = name
})
}
这样页面不能正常显示studentName,因为在事件调用函数中,谁调用事件,该函数的this就是谁,在该例子中,this就是Student实例对象
,
如果一定要mounted()和getStudentName一起写,可以将getStudentName写成回调函数:
mounted() {
this.$refs.student.$on('getName', (name)=>{
console.log("App收到了学生的名字:", name)
this.studentName = name
})
// this.$refs.student.$once('getName', this.getStudentName)
}
组件上绑定js原生事件,组件会认为该事件是自定义的事件。
可以使用.native
修饰符指明是原生的js事件
<Student ref="student" @click.native="show"/>
子组件===>父组件
事件的回调函数
在A
中)。事件的回调函数
即触发事件所执行函数。