Use of this.$set in VueBackground : When I was writing a front-end project, the back-end gave us a json object, and I rendered it on the page. However, due to my own needs, I want to add a field to the returned object, so I push a field into it. The field is added, but the page rendering does not change. Later I realized it was not responsive. If we want this new field to be responsive, we need to use this.$set to inject data. When an object or array (the value in the array is an object) is declared or assigned in Vue's data, adding a new property to the object and updating the value of this property will not update the view. use Here is a small example: Add an age property to an object and make it change responsively <template> <div class="text"> <p>{{list}}</p> <button @click="add">age++</button> </div> </template> <script> export default { data(){ return { list:{ name: "Zhang San"} } }, methods: { add(){ if(!this.list.age){ // If there is no age attribute, add an age attribute to it this.list.age=18 }else{ this.list.age++ } console.log(this.list) } } } </script> When we do not use The data is indeed added, but the page does not render the age property responsively. When we use We can see that the added data is responsive. Why responsive?If you look closely, you can see that this.$set has additional get age and set age methods, which is why it is responsive. analyzeThe responsive principle of Vue is that a JavaScript object is passed into a Vue instance as a data option. Vue will traverse all the properties of this object and use Object.defineProperty to convert all these properties into getters/setters. These getters/setters are invisible to the user, but internally they allow Vue to track dependencies and notify changes when properties are accessed and modified. It should be noted here that different browsers format getter/setter differently when printing data objects in the console. The following figure is from the official documentation. SummarizeThis article ends here. I hope it can be helpful to you. I also hope you can pay more attention to more content on 123WORDPRESS.COM! You may also be interested in:
|
<<: How to query the intersection of time periods in Mysql
>>: PNG Alpha Transparency in IE6 (Complete Collection)
It's embarrassing to say that I had to search ...
Table of contents 1. Computed properties Syntax: ...
The specific code is as follows: The html code is...
1. Environmental Description (1) CentOS-7-x86_64,...
MySQL 5.7 version: Method 1: Use the SET PASSWORD...
#include <linux/moduleparam.h> 1. Module pa...
In the Linux system, there is a kind of file call...
In the WeChat applet project, the development mod...
Slow log query function The main function of slow...
Table of contents 1. Pull the image 1.1 Pull the ...
First, let’s look at the GIF operation: Case 1: S...
Ⅰ. Problem description: Use html+css to implement...
This article uses examples to explain the princip...
1. Linux kernel driver module mechanism Static lo...
First install the dependent packages to avoid pro...