How to update v-for in Vue

How to update v-for in Vue

Tips:

  • Array change method will cause v-for to update and the page to update
  • Array non-changing method: Return a new array, which will not cause v-for to update. If the updated value cannot be detected, you can use overwrite or this.$set()

The array modification method is as follows:

1. arr.push() adds elements from the back

arr.push(5)

2. arr.pop() deletes the element from the back, only one

arr.pop()

3. arr.shift() deletes elements from the front, only one can be deleted

arr.shift()

4. arr.unshift() adds elements from the front and returns the length of the array after adding them

arr.unshift(8)

5. arr.splice(i,n) deletes N (number of deletions) starting from i (index value)

let arr = [1,2,3,4,5]
console.log(arr.splice(2,2)) //[3,4]
console.log(arr) // [1,2,5]

6. arr.sort() sorts the array and returns the sorted array

let arr = [2,10,6,1,4,22,3]
console.log(arr.sort()) // [1, 10, 2, 22, 3, 4, 6]
let arr1 = arr.sort((a, b) => a - b)  
console.log(arr1) // [1, 2, 3, 4, 6, 10, 22]
let arr2 = arr.sort((a, b) => b a)  
console.log(arr2) // [22, 10, 6, 4, 3, 2, 1]

7. arr.reverse() reverses the array

let arr = [1,2,3,4,5]
console.log(arr.reverse()) // [5,4,3,2,1]
console.log(arr) // [5,4,3,2,1]

Array non-mutating methods are as follows:

1. arr.concat() connects two arrays

let arr = [1,2,3,4,5]
console.log(arr.concat([1,2])) // [1,2,3,4,5,1,2]
console.log(arr) // [1,2,3,4,5]

2. arr.slice(start,end) cuts off the index from start to end, excluding the start index.

let arr = [1,2,3,4,5]
console.log(arr.slice(1,3)) // [2,3]

Override Method

<li v-for="(val, index) in arr" :key="index">
     {{ val }}
   </li>
   <button @click="sliceBtn">Slice the first 3</button>
   
    sliceBtn(){
   // 2. Array slice method will not cause v-for to update // slice will not change the original array // this.arr.slice(0, 3)

   // Solve v-for update - overwrite the original array let newArr = this.arr.slice(0, 3)
   this.arr = newArr
 },

this.$set() Method

<li v-for="(val, index) in arr" :key="index">
     {{ val }}
   </li>
   <button @click="sliceBtn">Update the value of index 0</button>
   
   sliceBtn(){
   // When updating a value, v-for cannot detect it // this.arr[0] = 1000
   
   // Solution - this.$set()
   // Parameter 1: Update target structure // Parameter 2: Update position // Parameter 3: Update value let newArr = this.arr.slice(0, 3)
   this.arr = newArr
 },

This is the end of this article about v-for update detection in Vue. For more relevant vue v-for update detection 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:
  • In-depth analysis of the v-for list rendering instruction in Vue.js
  • Detailed explanation of vuejs v-for list rendering
  • Attributes in vue v-for loop object
  • Detailed explanation of key uniqueness of v-for in Vue
  • v-for directive in vue completes list rendering

<<:  MySQL cursor functions and usage

>>:  The solution to the problem that the web table or div layer is stretched in the web page

Recommend

Mysql implements null value first/last method example

Preface We already know that MySQL uses the SQL S...

Tutorial on installing GreasyFork js script on mobile phone

Table of contents Preface 1. Iceraven Browser (Fi...

Detailed process of upgrading glibc dynamic library in centos 6.9

glibc is the libc library released by gnu, that i...

js to implement add and delete table operations

This article example shares the specific code of ...

JavaScript Objects (details)

Table of contents JavaScript Objects 1. Definitio...

Why can't I see the access interface for Docker Tomcat?

Question: Is the origin server unable to find a r...

How to set a fixed IP address for a VMware virtual machine (graphic tutorial)

1. Select Edit → Virtual Network Editor in the me...

An example of implementing a simple finger click animation with CSS3 Animation

This article mainly introduces an example of impl...

Summary of events that browsers can register

Html event list General Events: onClick HTML: Mous...

How to install PHP7 Redis extension on CentOS7

Introduction In the previous article, we installe...

CentOS 7 builds hadoop 2.10 high availability (HA)

This article introduces how to build a high-avail...

Mysql implementation of full-text search and keyword scoring method example

1. Introduction Today a colleague asked me how to...

Solution to the problem that elements with negative z-index cannot be clicked

I was working on a pop-up ad recently. Since the d...