A brief discussion on the principle of Vue's two-way event binding v-model

A brief discussion on the principle of Vue's two-way event binding v-model

Unlike js or jQuery, which directly changes and operates the DOM, Vue uses v-model to implement two-way binding of data. It will automatically select the correct method to update the element according to the control type.

v-model is a two-way binding instruction of Vue, which can synchronously update the value of the control input on the page to the relevant bound data attribute, and also update the value of the input control on the page when updating the data binding attribute.

The official documentation explains:

v-model is just a syntax sugar, the real implementation still depends on

  • v-bind: Bind responsive data
  • Trigger input event and pass data (core and focus)

The following code

<input v-model="txt"> 

Essentially

<input :value="txt" @input="txt = $event.target.value">

explain:

When the vue instance is initialized, each property of data will be recursively traversed, and the get and set methods of each property will be monitored through defineProperty, so that once a property is reassigned, the change can be monitored to operate the corresponding page control

Look at the code below:

Object.defineProperty(data,"name",{
        get(){
            return data["name"];
        },
        set(newVal){
            let val = data["name"];
            if (val === newVal) {
                return;
            }
            data["name"]=newVal;
            // Listen for changes in attribute values. If node is the corresponding input node, node.value=newVal;
        }    
    })

Summarize

On the one hand, the modal layer hijacks each property through Object.defineProperty, and once the change is detected, it is updated through the relevant page elements. On the other hand, by compiling the template file, the input event is bound to the v-model of the control, so that the page input can update the relevant data attribute value in real time

Object.defineProperty is used to control some special operations of an object's properties, such as read and write rights and whether it can be enumerated. Here we mainly study its corresponding two description properties get and set. v-model actually rewrites its get and set operations. Get is a function triggered by reading the value of the name attribute, and set is a function triggered by setting the value of the name attribute.

Replenish

v-model modifiers: .lazy, .trim, and .number

lazy: After each input event is triggered, the value of the input box is synchronized with the data, and the lazy modifier is added to convert it to using the change event for synchronization

<input v-model.lazy="msg">

trim: remove spaces from the beginning and end of a string

<input v-model.trim="msg">

number: Convert data into value type

<input v-model.number="msg">

This is the end of this article about the principle of Vue's two-way event binding v-model. For more relevant Vue two-way event binding v-model content, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Detailed explanation of VUE's data proxy and events
  • Detailed explanation of Vue dynamic components and global event binding summary
  • Usage of Vue filters and timestamp conversion issues
  • Detailed explanation of Vue filter implementation and application scenarios
  • Detailed explanation of Vue's data and event binding and filter filters

<<:  Sharing of the fast recovery solution for Mysql large SQL files

>>:  Linux file and user management practice

Recommend

JavaScript knowledge: Constructors are also functions

Table of contents 1. Definition and call of const...

CSS web page responsive layout to automatically adapt to PC/Pad/Phone devices

Preface There are many devices nowadays, includin...

How to build a deep learning environment running Python in Docker container

Check virtualization in Task Manager, if it is en...

Summary of basic operations for MySQL beginners

Library Operations Query 1.SHOW DATABASE; ----Que...

HTML hyperlinks explained in detail

Hyperlink Hyperlinks are the most frequently used ...

A brief understanding of the relevant locks in MySQL

This article is mainly to take you to quickly und...

MySQL database backup and recovery implementation code

Database backup #grammar: # mysqldump -h server-u...

Detailed steps for QT to connect to MYSQL database

The first step is to add the corresponding databa...

Detailed explanation of MySQL user and permission management

This article uses examples to describe the manage...

How to implement MySQL bidirectional backup

MySQL bidirectional backup is also called master-...

How to use Nginx to carry rtmp live server

This time we set up an rtmp live broadcast server...

Solution to "Specialized key was too long" in MySQL

Table of contents Solution 1 Solution 2 When crea...