詳解vue之自行實現派發與廣播(dispatch與broadcast)
阿新 • • 發佈:2021-01-21
要解決的問題
主要針對元件之間的跨級通訊
為什麼要自己實現dispatch與broadcast?
因為在做獨立元件開發或庫時,最好是不依賴第三方庫
為什麼不使用provide與inject?
因為它的使用場景,主要是子元件獲取上級元件的狀態,跨級元件間建立了一種主動提供與依賴注入的關係。
然後有兩種場景它不能很好的解決:
父元件向子元件(支援跨級)傳遞資料;
子元件向父元件(支援跨級)傳遞資料。
程式碼如下:
emitter.js
function broadcast(componentName,eventName,params) { this.$children.forEach(child => { const name = child.$options.name; if (name === componentName) { child.$emit.apply(child,[eventName].concat(params)); } else { // todo 如果 params 是空陣列,接收到的會是 undefined broadcast.apply(child,[componentName,eventName].concat([params])); } }); } export default { methods: { dispatch(componentName,params) { let parent = this.$parent || this.$root; let name = parent.$options.name; while (parent && (!name || name !== componentName)) { parent = parent.$parent; if (parent) { name = parent.$options.name; } } if (parent) { parent.$emit.apply(parent,[eventName].concat(params)); } },broadcast(componentName,params) { broadcast.call(this,componentName,params); } } };
parent.vue
<template> <div> <h1>我是父元件</h1> <button @click="handleClick">觸發事件</button> <child /> </div> </template> <script> import Emitter from "@/mixins/emitter.js"; import Child from "./child"; export default { name: "componentA",mixins: [Emitter],created() { this.$on("child-to-p",this.handleChild); },methods: { handleClick() { this.broadcast("componentB","on-message","Hello Vue.js"); },handleChild(val) { alert(val); } },components: { Child } }; </script>
child.vue
<template> <div>我是子元件</div> </template> <script> import Emitter from "@/mixins/emitter.js"; export default { name: "componentB",created() { this.$on("on-message",this.showMessage); this.dispatch("componentA","child-to-p","hello parent"); },methods: { showMessage(text) { window.alert(text); } } }; </script>
這樣就能實現跨級元件自定義通訊了,但是,要注意其中一個問題:訂閱必須先於釋出,也就是說先有on再有emit
父子元件渲染順序,例項建立順序
子元件先於父元件前渲染,所以在子組的mounted派發事件時,在父元件中的mounte中是監聽不到的。
而父元件的create是先於子元件的,所以可以在父元件中的create可以監聽到
到此這篇關於詳解vue之自行實現派發與廣播(dispatch與broadcast)的文章就介紹到這了,更多相關vue 派發與廣播內容請搜尋我們以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援我們!