Detailed analysis of Vuejs responsive principle
This time I will bring you a detailed analysis of the Vuejs responsiveness principle. What are the precautions when using the Vuejs responsiveness principle? The following is a practical case, let’s take a look.
Responsive principle
> The model(model) and view(view) in vuejs are synchronized. When the data is modified, the view will be automatically updated. This actually depends on the Object.defineProperty method, so vuejs IE8 and below are not supported. Vuejs monitors data changes by hijacking the getter/setter methods, collects dependencies through getters, and notifies the view to update when the data changes and the setter is executed.
Object.defineProperty
> Object.defineProperty can define or modify the properties of an object
> Currently, the properties that can be described by Object.defineProperty are divided into two types: data properties and accessor properties
// obj: 对象 // prop: 对象中的属性 // descriptor: 对象中的属性的特性 Object.defineProperty(obj,prop,descriptor);
Data attributes > The descriptors of data attributes include four types: value, writable, enumerable, configurable
var person = { name: 'json', age: 18 } Object.defineProperty(person, 'name', { value: 'John', // 属性的值,默认为undefined writable: false, // 是否可以重写属性的值,设为false便是只读的 enumerable: false, // 是否可枚举(for in或Object.keys),默认为false configurable: true // 是否可以删除或者重新设定上述配置,默认为false }) person.name = 'new name'; console.log(person.name); // 'John' for(key in person) console.log(person[key]); // 18 Object.defineProperty(person, 'name', { writable: true, enumerable: true, configurable: false }) person.name = 'new name'; console.log(person.name); // 'new name' for(key in person) console.log(person[key]); // 'new name',18
Accessor properties > The desciptors of accessor properties include four types: get, set, enumerable, configurable
var person = { _age: 20 }; Object.defineProperty(person, 'age',{ get: function(){ return this._age; }, set: function(age){ this._age = age < 0 ? 0 : age; } }); person.age = 5; // _age == 5 person.age = -3; // _age == 0 person._age = -3; // _age == -3
The practice of Vuejs hijacking data
function observer(value, cb) { // 遍历对象的所有属性并为对象添加对应的访问器属性 Object.keys(value).forEach((key) => defineReactive(value, key, value[key] , cb)) } function defineReactive (obj, key, val, cb) { Object.defineProperty(obj, key, { enumerable: true, configurable: true, get: ()=>{ /*....依赖收集等....*/ }, set:newVal=> { cb();/*订阅者收到消息的回调,这里为render函数,即重新渲染*/ } }) } class Vue { constructor(options) { this._data = options.data; observer(this._data, options.render) /*把所有数据变成可观察的*/ } } let app = new Vue({ el: '#app', data: { text: 'text', text2: 'text2' }, render(){ console.log("render"); } })
Residual issues > The above implementation can only trigger set through app._data_text, so how can app.text trigger set?
Agent
> The proxy can be implemented by adding the accessor attribute to this object, and then you can use app.text to replace app._data.text
_proxy(options.data);/*构造函数中*/ /*代理*/ function _proxy (data) { const that = this; Object.keys(data).forEach(key => { Object.defineProperty(that, key, { configurable: true, enumerable: true, get: function proxyGetter () { return that._data[key]; }, set: function proxySetter (val) { that._data[key] = val; } }) }); }
I believe you have mastered the method after reading the case in this article, and more How exciting, please pay attention to other related articles on php Chinese website!
Recommended reading:
How nodejs implements WeChat payment
Use nodejs to call the delivery address in WeChat
The above is the detailed content of Detailed analysis of Vuejs responsive principle. For more information, please follow other related articles on 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

In-depth analysis of the role and application scenarios of HTTP status code 460 HTTP status code is a very important part of web development and is used to indicate the communication status between the client and the server. Among them, HTTP status code 460 is a relatively special status code. This article will deeply analyze its role and application scenarios. Definition of HTTP status code 460 The specific definition of HTTP status code 460 is "ClientClosedRequest", which means that the client closes the request. This status code is mainly used to indicate

iBatis and MyBatis: Differences and Advantages Analysis Introduction: In Java development, persistence is a common requirement, and iBatis and MyBatis are two widely used persistence frameworks. While they have many similarities, there are also some key differences and advantages. This article will provide readers with a more comprehensive understanding through a detailed analysis of the features, usage, and sample code of these two frameworks. 1. iBatis features: iBatis is an older persistence framework that uses SQL mapping files.

Detailed explanation of Oracle error 3114: How to solve it quickly, specific code examples are needed. During the development and management of Oracle database, we often encounter various errors, among which error 3114 is a relatively common problem. Error 3114 usually indicates a problem with the database connection, which may be caused by network failure, database service stop, or incorrect connection string settings. This article will explain in detail the cause of error 3114 and how to quickly solve this problem, and attach the specific code

Wormhole is a leader in blockchain interoperability, focused on creating resilient, future-proof decentralized systems that prioritize ownership, control, and permissionless innovation. The foundation of this vision is a commitment to technical expertise, ethical principles, and community alignment to redefine the interoperability landscape with simplicity, clarity, and a broad suite of multi-chain solutions. With the rise of zero-knowledge proofs, scaling solutions, and feature-rich token standards, blockchains are becoming more powerful and interoperability is becoming increasingly important. In this innovative application environment, novel governance systems and practical capabilities bring unprecedented opportunities to assets across the network. Protocol builders are now grappling with how to operate in this emerging multi-chain

[Analysis of the meaning and usage of midpoint in PHP] In PHP, midpoint (.) is a commonly used operator used to connect two strings or properties or methods of objects. In this article, we’ll take a deep dive into the meaning and usage of midpoints in PHP, illustrating them with concrete code examples. 1. Connect string midpoint operator. The most common usage in PHP is to connect two strings. By placing . between two strings, you can splice them together to form a new string. $string1=&qu

Analysis of new features of Win11: How to skip logging in to a Microsoft account. With the release of Windows 11, many users have found that it brings more convenience and new features. However, some users may not like having their system tied to a Microsoft account and wish to skip this step. This article will introduce some methods to help users skip logging in to a Microsoft account in Windows 11 and achieve a more private and autonomous experience. First, let’s understand why some users are reluctant to log in to their Microsoft account. On the one hand, some users worry that they

Due to space limitations, the following is a brief article: Apache2 is a commonly used web server software, and PHP is a widely used server-side scripting language. In the process of building a website, sometimes you encounter the problem that Apache2 cannot correctly parse the PHP file, causing the PHP code to fail to execute. This problem is usually caused by Apache2 not configuring the PHP module correctly, or the PHP module being incompatible with the version of Apache2. There are generally two ways to solve this problem, one is

Detailed analysis and examples of exponential functions in C language Introduction: The exponential function is a common mathematical function, and there are corresponding exponential function library functions that can be used in C language. This article will analyze in detail the use of exponential functions in C language, including function prototypes, parameters, return values, etc.; and give specific code examples so that readers can better understand and use exponential functions. Text: The exponential function library function math.h in C language contains many functions related to exponentials, the most commonly used of which is the exp function. The prototype of exp function is as follows
