Problem to be solvedMainly for cross-level communication between components Why do you need to implement dispatch and broadcast yourself?Because when developing independent components or libraries, it is best not to rely on third-party libraries Why not use provide and inject? Because its usage scenario is mainly for sub-components to obtain the status of parent components, an active provision and dependency injection relationship is established between cross-level components. The code is as follows: 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 If params is an empty array, it will receive undefined broadcast.apply(child, [componentName, eventName].concat([params])); } }); } export default { methods: { dispatch(componentName, eventName, 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, eventName, params) { broadcast.call(this, componentName, eventName, params); } } }; parent.vue <template> <div> <h1>I am the parent component</h1> <button @click="handleClick">Trigger event</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>I am a child component</div> </template> <script> import Emitter from "@/mixins/emitter.js"; export default { name: "componentB", mixins: [Emitter], created() { this.$on("on-message", this.showMessage); this.dispatch("componentA", "child-to-p", "hello parent"); }, methods: { showMessage(text) { window.alert(text); } } }; </script> In this way, cross-level component custom communication can be achieved. However, one problem should be noted: subscription must precede publishing, that is, on must come before emit. Parent-child component rendering order, instance creation order The child component is rendered before the parent component, so when the mounted event of the child component is dispatched, it cannot be heard in the mount in the parent component. This is the end of this article about Vue's self-implemented dispatch and broadcast (dispatch and broadcast). For more relevant Vue dispatch and broadcast content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: How to change the root password in MySQL 5.7
>>: How to implement remote automatic backup of MongoDB in Linux
1. Introduction As we all know, in the applicatio...
Table of contents Prometheus monitors MySQL throu...
Baidu Cloud Disk: Link: https://pan.baidu.com/s/1...
Introduction The Docker-Compose project is an off...
The installation and configuration methods of MyS...
This article uses examples to illustrate the MySQ...
Serve: # chkconfig --list List all system service...
The default varchar type in MySQL is case insensi...
The display without the effect picture is just em...
Table of contents Preface What are asynchronous i...
Using depends_on to sort containers does not perf...
Purpose: Treat Station A as the secondary directo...
Before the release of Microsoft IE 5.0, the bigges...
1. Introduction pt-query-digest is a tool for ana...
The LIKE operator is used in the WHERE clause to ...