Research on the principle of two-way data binding in Vue
The idea of two-way binding
The idea of two-way data binding is the synchronization of the data layer and the UI layer. When either one of the two changes, the data will be synchronously updated to the other.
Some methods of two-way binding
Currently, there are roughly three ways to implement two-way data binding on the front end:
1. Publisher-subscriber model ( backbone.js)
Idea: Use custom data attributes to specify binding in HTML code. All bound JavaScript objects and DOM elements will be "subscribed" to a publisher object. Any time a JavaScript object or an HTML input field is detected to have changed, we will delegate the event to the publisher-subscriber pattern, which in turn will broadcast and propagate the change to all bound objects and elements.
2. Stolen value detection (angular.js)
Idea: Detect data changes through polling. Only when a specific event is triggered will the stolen value detection be entered.
Approximately as follows:
• DOM events, such as users entering text, clicking buttons, etc. (ng-click)
• XHR response event ($http)
• Browser Location change event ($location)
• Timer event ($timeout, $interval )
• Execute $digest() or $apply()
3. Data hijacking (vue.js)
Idea: Use Object.defineProperty to make attributes on the data object The monitoring of get and set calls the node's instructions when there are data reading and assignment operations, so that the most common = equal sign assignment can be triggered.
Wue two-way data binding small demo idea
① Construct a Wue object, define the properties el and data of the object, pass the corresponding data when creating the object, and execute the init() method.
var Wue=function(params){ this.el=document.querySelector(params.el); this.data=params.data; this.init(); };
② The bindText and bindModel methods are executed in the Init method. These two methods are to parse the html bound to the w-model and w-text instructions in the dom and process them accordingly. .
init:function(){ this.bindText(); this.bindModel(); }
③ bindText method, put the elements with w-text directive into an array, such as: w-text='demo', and then make the value of innerHTML equal to the passed Incoming data[demo].
bindText:function(){ var textDOMs=this.el.querySelectorAll('[w-text]'), bindText; for(var i=0;i<textDOMs.length;i++){ bindText=textDOMs[i].getAttribute('w-text'); textDOMs[i].innerHTML=this.data[bindText]; } }
④ bindModel method, put elements with w-model instructions (generally form-related elements) into an array, such as: w-model='demo', for Each element is bound to the keyup event (compatible with browser writing).
bindModel:function(){ var modelDOMs=this.el.querySelectorAll('[w-model]'), bindModel; var _that=this; for(var i=0;i<modelDOMs.length;i++){ bindModel=modelDOMs[i].getAttribute('w-model'); modelDOMs[i].value=this.data[bindModel]||''; //数据劫持 this.defineObj(this.data,bindModel); if(document.addEventListener){ modelDOMs[i].addEventListener('keyup',function(event) { console.log('test'); e=event||window.event; _that.data[bindModel]=e.target.value; },false); }else{ modelDOMs[i].attachEvent('onkeyup',function(event){ e=event||window.event; _that.data[bindModel]=e.target.value; },false); } } }
⑤ Use Object.defineProperty to define the set and get methods, and call the bindText method in the set method. This is used once the value of w-model is changed in the input, the set method will be automatically executed, so only the method of updating w-text can be called in this method.
defineObj:function(obj,prop,value){ var val=value||''; var _that=this; try{ Object.defineProperty(obj,prop,{ get:function(){ return val; }, set:function(newVal){ val=newVal; _that.bindText(); } }) }catch (err){ console.log('Browser not support!') } }
⑥Use
html:<br><h3>双向数据绑定demo</h3> <div id="wrap"> <input type="text" w-model='demo'> <h5 w-text='demo'></h5> </div><br>js: <script src='../js/wue.js'></script> <script> new Wue({ el:'#wrap', data:{ demo:'winty' } }) </script>
The above is the entire content of this article. I hope that the content of this article can bring some help to everyone's study or work. I also hope that there will be more Support PHP Chinese website!
For more related articles exploring the principles of vue two-way data binding, please pay attention to the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Frequently Asked Questions and Solutions for Front-end Thermal Paper Ticket Printing In Front-end Development, Ticket Printing is a common requirement. However, many developers are implementing...

There is no absolute salary for Python and JavaScript developers, depending on skills and industry needs. 1. Python may be paid more in data science and machine learning. 2. JavaScript has great demand in front-end and full-stack development, and its salary is also considerable. 3. Influencing factors include experience, geographical location, company size and specific skills.

JavaScript is the cornerstone of modern web development, and its main functions include event-driven programming, dynamic content generation and asynchronous programming. 1) Event-driven programming allows web pages to change dynamically according to user operations. 2) Dynamic content generation allows page content to be adjusted according to conditions. 3) Asynchronous programming ensures that the user interface is not blocked. JavaScript is widely used in web interaction, single-page application and server-side development, greatly improving the flexibility of user experience and cross-platform development.

How to merge array elements with the same ID into one object in JavaScript? When processing data, we often encounter the need to have the same ID...

Discussion on the realization of parallax scrolling and element animation effects in this article will explore how to achieve similar to Shiseido official website (https://www.shiseido.co.jp/sb/wonderland/)...

Learning JavaScript is not difficult, but it is challenging. 1) Understand basic concepts such as variables, data types, functions, etc. 2) Master asynchronous programming and implement it through event loops. 3) Use DOM operations and Promise to handle asynchronous requests. 4) Avoid common mistakes and use debugging techniques. 5) Optimize performance and follow best practices.

In-depth discussion of the root causes of the difference in console.log output. This article will analyze the differences in the output results of console.log function in a piece of code and explain the reasons behind it. �...

Explore the implementation of panel drag and drop adjustment function similar to VSCode in the front-end. In front-end development, how to implement VSCode similar to VSCode...
