vue2.x中事件总线EventBus的使用

vue2.x中事件总线EventBus的使用

一、使用方法

// eventBus.js
import Vue from "vue";
const EventBus = new Vue();
export default EventBus;
<!-- 容器A: 接收方 -->
<template>
    <div>{{ message }}</div>
</template>

<script>
    import eventBus from './event-bus'
    export default {
        data() {
            return {
                message: '我是容器A的内容'
            }
        },
        mounted() {
            eventBus.$on("sendMessage", (msg) => {
                this.message = msg;
            })
        },
        destroyed() {
            eventBus.$off("sendMessage")
        }
    }
</script>
<!-- 容器B:发送方 -->
<template>
    <button @click="sendToComponentA">点击</button>
</template>
<script>
    import eventBus from './event-bus'
    export default {
        methods: {
            sendToComponentA() {
                eventBus.$emit("sendMessage", "我来找容器A通信了")
            }
        }
    }
</script>

二、手写实现 EventBus 原理

class EventBus {
    constructor() {
        this.callbacks = {}
    }
    $on(name, fn) {
        this.callbacks[name] = this.callbacks[name] || [];
        this.callbacks[name].push(fn);
        console.log('on callback', this.callbacks)
    }
    $emit(name, args) {
        if (this.callbacks[name]) {
            this.callbacks[name].forEach(cb => cb(args));
        }
        console.log('emit callback', this.callbacks);
    }
    $off(name) {
        if (this.callbacks[name]) delete this.callbacks[name];
        console.log('off callback', this.callbacks)
    }
}
export default new EventBus();
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值