Home  >  Article  >  Web Front-end  >  Vue data dynamic addition and dynamic binding ideas (pictures and texts)

Vue data dynamic addition and dynamic binding ideas (pictures and texts)

不言
不言forward
2018-10-17 15:31:333713browse

The content this article brings to you is about dynamic addition of vue data and dynamic binding ideas (pictures and texts). It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.

Let’s start with the case

Vue data dynamic addition and dynamic binding ideas (pictures and texts)

First of all, let’s analyze it. When selecting a subject, the following also adds the full mark value setting for the subject.

The idea of ​​writing jquery before: create a dom node when checked, and then append the dom node to the parent node. The project interacts in a separated manner. In this way, the full score value of the set subject It's out of bounds. Go one step further: Bind all the inputs that set the full score value first, and then control the display and hiding. In this way, the purpose is achieved, but once the option is obtained from the background, once the background is changed, it will be changed accordingly.

Make full use of the data-driven view idea:

Vue data dynamic addition and dynamic binding ideas (pictures and texts)

Code snippet

1. Description: What this function does, To determine whether the array contains the value passed in by the function, here use the traversal method to loop through the array to see if the subject value of the object in the array is equal to the value passed in. If it is equal, it means that the array contains this item, and It means that this subject is already checked, and it needs to be deleted. Here, the splic method (Vue's mutation method) is used to delete it, directly changing the value of the original array, and sending Vue to update the view.

Vue data dynamic addition and dynamic binding ideas (pictures and texts)

2. Description: Define the array of full score value loop

Vue data dynamic addition and dynamic binding ideas (pictures and texts)

3. Description: This array is the data of the above CheckBox

Vue data dynamic addition and dynamic binding ideas (pictures and texts)

##4. Description: Detailed writing method of v-for loop

Vue data dynamic addition and dynamic binding ideas (pictures and texts)

The above is the detailed content of Vue data dynamic addition and dynamic binding ideas (pictures and texts). For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:segmentfault.com. If there is any infringement, please contact admin@php.cn delete