Home > Web Front-end > JS Tutorial > body text

Vue handles the array page through the following table without rendering

php中世界最好的语言
Release: 2018-04-11 16:05:14
Original
1448 people have browsed it

This time I will bring you Vue to handle the array page not rendering through the following table, and Vue to handle the array page not rendering through the following table. What are the precautions?The following is a practical case. take a look.

It should be noted that the reason why Vue can monitor changes in Modelstate is because the JavaScript language itself provides Proxy or Object. observe() mechanism to monitor changes in the object state. However, there is no way to directly monitor the assignment of array elements. Therefore, if we directly assign values ​​to array elements:

vm.todos[0] = {
  name: 'New name',
  description: 'New description'
};
Copy after login

This will cause Vue to be unable to update View.

The correct way is not to assign values ​​to the array elements, but to update:

vm.todos[0].name = 'New name';
vm.todos[0].description = 'New description';
Copy after login

Or, through the splice() method, delete an element and then add another element to achieve the effect of "assignment":

var index = 0;
var newElement = {...};
vm.todos.splice(index, 1, newElement);
Copy after login

Vue can monitor splice, push, unshift and other method calls of the array, so the above code can correctly update the View.

I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the php Chinese website!

Recommended reading:

How to deal with the option overlay of select

How to import the css library in vue.js

The above is the detailed content of Vue handles the array page through the following table without rendering. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!