美文网首页
全局事件总线

全局事件总线

作者: 冰点雨 | 来源:发表于2022-04-09 14:51 被阅读0次

1.一种组件间通信方式,适用于任意组件间通信
2.安装全局事件总线
new Vue({
...
beforeCreate () {
Vue.prototype.bus = this //安装全局事件总线 } }) 3.使用事件总线 (1)接收数据:A组件想接收数据,则在按租金中给bus 绑定自定义事件,事件的回调留在 A 组件自身
methods: {
sendStudentName() {
demo(data){...}
}
...
mounted() {
this.bus.on('xxx', (data) => {
this.bus.emit('xxx', this.demo)
})
},
(2)提供数据:this.bus.emit('xxxxx', this.demo)
4.最好在 beforeDestroy 钩子中,用$off 去解绑当前组件所用到的事件

a20efc47cb298396e24d2bd81d63061.png

使用方法

在main.js中绑定全局事件总线

beforeCreate () {
    Vue.prototype.$bus  =  this //安装全局事件总线
  }

发送:

 this.$bus.$emit('hello', this.name)

接收:

this.$bus.$on('hello', (data) => {
      console.log('我是school组件,收到数据了', data)
    })

销毁

 this.$bus.$off('hello')

main.js

import Vue from 'vue'
import App from './App.vue'
Vue.config.productionTip = false
new Vue({
  render: h => h(App),
  beforeCreate () {
    Vue.prototype.$bus  =  this //安装全局事件总线
  }
}).$mount('#app')

App.vue

<template>
  <div class="app">
    <h1>{{ msg }}</h1>
    <School />
    <Student />
  </div>
</template>

<script>
// 引入组件
import School from './components/School.vue'
import Student from './components/Student.vue'

export default {
  name: 'App',
  components: {
    School,
    Student,
  },
  data() {
    return {
      msg: '你好啊',
    }
  },
}
</script>

<style scoped>
.app {
  background-color: gray;
  padding: 5px;
}
</style>

School.vue

<template>
  <!-- 组件的结构 -->
  <div class="school">
    <h2>学校名称:{{ name }}</h2>
    <h2>学校地址:{{ address }}</h2>
  </div>
</template>

<script>
export default {
  name: 'School',
  data() {
    return {
      name: '清华大学',
      address: '北京',
    }
  },
  mounted() {
    this.$bus.$on('hello', (data) => {
      console.log('我是school组件,收到数据了', data)
    })
  },
  beforeDestroy() {
    this.$bus.$off('hello')
  },
}
</script>

<style lang="less" scoped>
.school {
  background-color: skyblue;
  padding: 5px;
}
</style>

Student.vue

<template>
  <!-- 组件的结构 -->
  <div class="student">
    <h2>学生姓名:{{ name }}</h2>
    <h2>学生性别:{{ sex }}</h2>
    <button @click="sendStudentName">传递学生名称给学校</button>
  </div>
</template>

<script>
// 第一步:创建学校组件
export default {
  name: 'Student',
  data() {
    return {
      name: '张三',
      sex: '男',
    }
  },
  methods: {
    sendStudentName() {
      this.$bus.$emit('hello', this.name)
    },
  },
}
</script>

<style scoped>
.student {
  background-color: orange;
  padding: 5px;
  margin-top: 30px;
}
</style>

相关文章

  • 全局事件总线

    全局事件总线 1、一种组件间相互通信的方式,适用于任意组件间通信。 2、安装全局事件总线: new ...

  • 全局事件总线

    1.一种组件间通信方式,适用于任意组件间通信2.安装全局事件总线new Vue({...beforeCreate ...

  • $bus 全局事件总线

    组件之间除了父子这种有关系的,有联系的,可以通过父子组件之间通信来实现交流除了这种父子关系的组件,还有没什么联系的...

  • Vue全局事件总线

    添加$bus属性 首先在Vue的prototype原型对象上添加$bus属性,属性的值为当前的Vue对象,作为全局...

  • LiveDataBus

    全局共用的消息事件总线,可代替EventBus解决简单的数据传递功能

  • Vue父子组件间通信(数据传递)

    父---props--->子子---props/自定义事件/全局事件总线/消息订阅与发布--->父任意组件间通信:...

  • antV F2 利用changeSize在windowResiz

    antV f2 windowResize思路:①注册全局总线 提起监听事件;②在app.vue的入口页写下监听事件...

  • 11-全局数据总线

    1. 定义 全局事件总线是一种组件间的通信方式,适用于任意组件之间的通信。事件总线是程序员在工作中的总结,不是新的...

  • vue学习(40)全局事件总线

    思路 首先可以让所有组件访问到尝试1:是不是可以往window身上放一个x?widnow.x=123;虽然其他组件...

  • RxJava实现事件总线(RxBus)学习笔记

    目录事件总线的介绍利用RxJava实现事件总线(Rxbus)Rxbus的使用 事件总线的介绍 1. 什么是事件总线...

网友评论

      本文标题:全局事件总线

      本文链接:https://www.haomeiwen.com/subject/mvejdrtx.html