Vue life cycle introduction and hook function The internal structure of a component is different in each phase, so generally specific hooks do specific things, such as Ajax data acquisition in the mounted phase. The entire process from the creation of the Vue instance to the final destruction of the instance is called the VUE life cycle. The following things happen during this life cycle: starting from the creation of the Vue instance, the Vue instance is first created, then the data is initialized, the template is compiled, the DOM is mounted, the DOM is rendered, the object properties are updated, the DOM is rendered, and the binding is untied and destroyed. VUE life cycle hooks Lifecycle hooks are also called lifecycle time, lifecycle function, and lifecycle hooks are various events triggered in the vue lifecycle. These events are called lifecycle hooks. In the vue lifecycle, most of them are divided into four stages: creation, hanging, update, and destruction. These four stages each correspond to two lifecycle hooks. 1. The creation part (create) is when the Vue instance is initialized. Simply put, we perform this operation in the code var app = new Vue(), and then enter the creation phase of the Vue life cycle. In the creation phase, there will be two programming interfaces provided to us, namely beforeCreate and created. Both interfaces are triggered in the creation phase, but there are some differences between the two interfaces. beforeCreate is triggered earlier than created, that is, it is triggered after the vue instance is initialized and before data is read. If the data in data is read at this time, it will prompt unfined. created is called after the instance is created. At this time, the data in data has been written, but the DOM has not been mounted yet, so it has not been associated with the page. Now enter the mounting stage. 2. Mounting phase (mount): This phase is to mount the DOM in the page to the instantiated Vue object. Simply put, el: '#dom' is executed. At this stage, there are also two interfaces for us to program, namely beforemount and mounted. The main difference between these two interfaces is whether the DOM is mounted on the instance object. Beforemount is triggered before mounting and only the template is parsed. If the innerHTML of the DOM that needs to be mounted is output at this time, the template will be output as is without rendering the data. After mounted, the data in data can be rendered on the page. This phase is followed by the update phase. 3. Update phase: This phase is when the data on the page is updated again after the first load. It also corresponds to two interfaces: beforeupdate and update. The main difference between these two interfaces lies in whether the page DOM is rendered. When we modify the data in data and trigger beforeupdate after the modification is completed, the attribute value in data has been modified, but the DOM of the page has not been rendered. Update is to render the data on the page. At this point, the life cycle of Vue has reached the update stage. In normal use, we will often be in the update stage many times and make various modifications to the data on the page. However, in order to close unnecessary events and release memory, a destruction phase is required. Introduction to Vue Lifecycle The stages described above Using code observation hook function <!DOCTYPE html> <html> <head> <title></title> <script type="text/javascript" src="https://cdn.jsdelivr.net/vue/2.1.3/vue.js"></script> </head> <body> <div id="app"> <p>{{ message }}</p> </div> <script type="text/javascript"> var app = new Vue({ el: '#app', data: { message: "xuxiao is boy" }, beforeCreate: function () { console.group('beforeCreate Status before creation ===============》'); console.log("%c%s", "color:red" , "el : " + this.$el); //undefined console.log("%c%s", "color:red","data : " + this.$data); //undefined console.log("%c%s", "color:red","message: " + this.message) }, created: function () { console.group('created Creation completed status ===============》'); console.log("%c%s", "color:red","el : " + this.$el); //undefined console.log("%c%s", "color:red","data : " + this.$data); //has been initializedconsole.log("%c%s", "color:red","message: " + this.message); //has been initialized}, beforeMount: function () { console.group('beforeMount Status before mounting ===============》'); console.log("%c%s", "color:red","el : " + (this.$el)); //Initialized console.log(this.$el); console.log("%c%s", "color:red","data : " + this.$data); //has been initializedconsole.log("%c%s", "color:red","message: " + this.message); //has been initialized}, mounted: function () { console.group('mounted Mounting end status ===============》'); console.log("%c%s", "color:red","el : " + this.$el); //Initialized console.log(this.$el); console.log("%c%s", "color:red","data : " + this.$data); //has been initializedconsole.log("%c%s", "color:red","message: " + this.message); //has been initialized}, beforeUpdate: function () { console.group('beforeUpdate Status before update ===============》'); console.log("%c%s", "color:red","el : " + this.$el); console.log(this.$el); console.log("%c%s", "color:red","data : " + this.$data); console.log("%c%s", "color:red","message: " + this.message); }, updated: function () { console.group('updated Update completed status ===============》'); console.log("%c%s", "color:red","el : " + this.$el); console.log(this.$el); console.log("%c%s", "color:red","data : " + this.$data); console.log("%c%s", "color:red","message: " + this.message); }, beforeDestroy: function () { console.group('beforeDestroy state before destruction ===============》'); console.log("%c%s", "color:red","el : " + this.$el); console.log(this.$el); console.log("%c%s", "color:red","data : " + this.$data); console.log("%c%s", "color:red","message: " + this.message); }, destroyed: function () { console.group('destroyed Destruction completed status ===============》'); console.log("%c%s", "color:red","el : " + this.$el); console.log(this.$el); console.log("%c%s", "color:red","data : " + this.$data); console.log("%c%s", "color:red","message: " + this.message) } }) </script> </body> </html> create and mounted related In addition, in the red area, we can find that el is still {{message}}. This is where the Virtual DOM (virtual Dom) technology is applied, which occupies the pit first. The value will be rendered when it is mounted later. update related destroyRegarding destruction, it is not very clear yet. We execute the command in the console to destroy the Vue instance. After the destruction is completed, we change the value of message again, and Vue will no longer respond to this action. However, the originally generated DOM elements still exist. It can be understood that after the destroy operation is executed, they will no longer be controlled by Vue. Summarize This article ends here. I hope it can be helpful to you. I also hope that you can pay more attention to more content on 123WORDPRESS.COM! You may also be interested in:
|
<<: How to modify the port mapping of a running Docker container
>>: Example of stars for CSS rating effect
Recently I want to use native JS to implement som...
Uninstall MySQL 1. In the control panel, uninstal...
As shown in the following figure: If the version ...
In the previous article, it was mentioned that th...
MySQL software installation and database basics a...
The preparation for the final exams in the past h...
Reflections on the two viewpoints of “people-orie...
tomcat server configuration When everyone is lear...
This article example shares the specific code of ...
Recently, I added a click-to-send email function t...
question In LINUX, periodic tasks are usually han...
Join query A join query refers to a matching quer...
This article shares the specific code of jQuery t...
The installation process of VMwarea will not be d...
Table of contents 0. The kernel tree that comes w...