vue $set implements assignment of values ​​to array collection objects

vue $set implements assignment of values ​​to array collection objects

Vue $set array collection object assignment

In the vue custom array object collection, you want to add another attribute and value to each array object.

// data defines a collection object responseData:[
      {'id':'1','name':'Women's clothing','price':115,'num':1,'pic':'../static/img/1.jpg'},
      {'id':'2','name':'Men's Clothing','price':110,'num':1,'pic':'../static/img/2.jpg'},
      {'id':'3','name':'Children's clothing','price':118,'num':2,'pic':'../static/img/3.jpg'}
],
// vue method request returns collection object data if (res.data.code === 'ok') {
 that.totals = res.data.data.total;
 that.questionList = res.data.data.list;
 
}
// Assignment operation for(let val of that.questionList){
//This is the key point hat.$set(val,'discussAnswer','0');
}

Usage of Vue this.$set

Solve the problem that arrays and objects are not updated after modification

1. What does this.$set do and why should we use it?

When you find that you have added a property to an object and it can be printed out in the console, but it is not updated in the view, you may need to use the this.$set() method. Simply put, the function of this.$set is to solve this problem.

Official explanation: Add a property to a responsive object and ensure that the new property is also responsive and triggers view updates. It must be used to add new properties to a reactive object, because Vue cannot detect normal new properties (such as this.myObject.newProperty = 'hi').

2. How to use it?

For example:

1. Vue code written in template:

<div v-for="(item,index) in list" :key="index"
>{{item.name}}
</div>
<button @click="changeValue" type="primary">Change value</button>
</div>

2. Export data in default{}

data(){
    return {
      list:[
        {name:'29Kun',id:1},
        {name:'299Kun',id:2},
      ]
    } 
  }

3. Click the button to trigger the changeValue method

mounted(){
  this.list[2] = {name:'2999Kun',id:3}
  console.log(this.list[0]);
}, 
methods: {
  changeValue(){
    this.$set(this.list,2,{name:'2999kun',id:3})
  }
}

Calling method: this.$set( target, key, value )

target : the data source to be changed (can be an object or an array)

key : the specific data to be changed

value : the reassigned value

4. When the button is not clicked, the interface is like this. Although the interface is not displayed, the console has been printed out

insert image description here

insert image description here

5. When the button is clicked, the this.$set method is called and the third attribute is successfully displayed.

insert image description here

The above is my personal experience. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM.

You may also be interested in:
  • How to assign values ​​to tag attributes in vue v-for loop
  • How to use loop object properties and attribute values ​​in Vue
  • How to implement Vue loop traversal options and assign them to corresponding controls
  • How to loop and assign values ​​to objects in Vue

<<:  MySQL index for beginners

>>:  Add a startup method to Linux (service/script)

Recommend

How to package the uniapp project as a desktop application

Installing Electron cnpm install electron -g Inst...

How to check the hard disk size and mount the hard disk in Linux

There are two types of hard disks in Linux: mount...

How does Vue solve the cross-domain problem of axios request front end

Table of contents Preface 1. Why do cross-domain ...

Detailed explanation of angular parent-child component communication

Table of contents APIs used Simple Example person...

Common JavaScript memory errors and solutions

Table of contents 1. Timer monitoring 2. Event mo...

5 Commands to Use the Calculator in Linux Command Line

Hello everyone, I am Liang Xu. When using Linux, ...

How to install openjdk in docker and run the jar package

Download image docker pull openjdk Creating a Dat...

Vue implements a shopping cart that can change the shopping quantity

This article shares with you how to use Vue to ch...

Implementation of Docker private library

Installing and deploying a private Docker Registr...

How to use wangEditor in vue and how to get focus by echoing data

Rich text editors are often used when doing backg...

Implementation of vue+drf+third-party sliding verification code access

Table of contents 1. Background 2. Verification p...

Detailed explanation of Nginx timeout configuration

I recently used nginx in a project, and used Java...

Solution to the problem "Table mysql.plugin doesn't exist" when deploying MySQL

Today I deployed the free-installation version of...