首頁 > 軟體

Vue全域性事件匯流排你瞭解嗎

2022-02-24 22:00:15

全域性事件匯流排,是元件間的一種通訊方式,適用於任何元件間通訊。

看下面具體的例子。

父元件:App

<template>
    <div class="app">
        <Company/>
        <Employee/>
    </div>
</template>

<script>
import Company from "./components/Company.vue";
import Employee from "./components/Employee.vue";

export default {
    components:{
        Company,
        Employee
    }
}
</script>

<style>
.app{
    background: gray;
    padding: 5px;
}
.btn{
    margin-left:10px;
    line-height: 30px;
    background: ivory;
    border-radius: 5px;
}
</style>

子元件:Company和Employee

<template>
  <div class="company">
      <h2>公司名稱:{{name}}</h2>
      <h2>公司地址:{{address}}</h2>
      <button @click="sendMessage">點我傳送</button>
  </div>
</template>

<script>
export default {
    name:"Company",
    data(){
        return {
            name:"五哈技術有限公司",
            address:"上海寶山"
        }
    },
    methods:{
        sendMessage(){
            console.log("Company元件傳送資料:",this.name);
            this.$bus.$emit("demo",this.name);
        }
    }

}    
</script>

<style scoped>
.company{
    background: orange;
    background-clip: content-box;
    padding: 10px;
}
</style>
<template>
  <div class="employee">
      <h2>員工姓名:{{name}}</h2>
      <h2>員工年齡:{{age}}</h2>
  </div>
</template>

<script>
export default {
    name:"Employee",
    data(){
        return {
            name:"張三",
            age:25
        }
    },
    mounted(){
        this.$bus.$on("demo",(data) => {
            console.log("Employee元件監聽demo,接收資料:",data);
        })
    },
    beforeDestroy() {
        this.$bus.$off("demo");
    }
}

</script>

<style scoped>
.employee{
    background: skyblue;
    background-clip: content-box;
    padding: 10px;
}
</style>

入口檔案:main.js

import Vue from 'vue';  
import App from './App.vue';

Vue.config.productionTip = false;

new Vue({
  el:"#app",
  render: h => h(App),
  beforeCreate(){ 
    Vue.prototype.$bus = this;
  }
})

父元件App,子元件CompanyEmployee

子元件Company和Employee之間通過全域性資料匯流排進行資料傳遞。

在main.js中,定義了全域性事件匯流排:$bus

$bus定義在Vue.prototype,因此$bus對所有元件可見,即所有元件可通過this.$bus存取。

$bus被賦值為this,即vm範例,因此$bus擁有vm範例上的所有屬性和方法,如$emit$on$off等。

new Vue({
  beforeCreate(){ 
    Vue.prototype.$bus = this;
  }
})

使用全域性事件匯流排

$bus.$on,監聽事件。Employee元件中定義了監聽事件,監聽demo事件;

$bus.$emit,觸發事件。Company元件中定義了觸發事件,點選按鈕執行sendMessage回撥,該回撥將觸發demo事件。

總結

本篇文章就到這裡了,希望能夠給你帶來幫助,也希望您能夠多多關注it145.com的更多內容!   


IT145.com E-mail:sddin#qq.com