最新文章專題視頻專題問答1問答10問答100問答1000問答2000關(guān)鍵字專題1關(guān)鍵字專題50關(guān)鍵字專題500關(guān)鍵字專題1500TAG最新視頻文章推薦1 推薦3 推薦5 推薦7 推薦9 推薦11 推薦13 推薦15 推薦17 推薦19 推薦21 推薦23 推薦25 推薦27 推薦29 推薦31 推薦33 推薦35 推薦37視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關(guān)鍵字專題關(guān)鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
問答文章1 問答文章501 問答文章1001 問答文章1501 問答文章2001 問答文章2501 問答文章3001 問答文章3501 問答文章4001 問答文章4501 問答文章5001 問答文章5501 問答文章6001 問答文章6501 問答文章7001 問答文章7501 問答文章8001 問答文章8501 問答文章9001 問答文章9501
當(dāng)前位置: 首頁 - 科技 - 知識(shí)百科 - 正文

vue源碼學(xué)習(xí)之Object.defineProperty 對(duì)數(shù)組監(jiān)聽

來源:懂視網(wǎng) 責(zé)編:小采 時(shí)間:2020-11-27 22:13:47
文檔

vue源碼學(xué)習(xí)之Object.defineProperty 對(duì)數(shù)組監(jiān)聽

vue源碼學(xué)習(xí)之Object.defineProperty 對(duì)數(shù)組監(jiān)聽:上一篇中,我們介紹了一下defineProperty 對(duì)對(duì)象的監(jiān)聽,這一篇我們看下defineProperty 對(duì)數(shù)組的監(jiān)聽 數(shù)組的變化 先讓我們了解下Object.defineProperty()對(duì)數(shù)組變化的跟蹤情況: var a={}; bValue=1; Object.defineProper
推薦度:
導(dǎo)讀vue源碼學(xué)習(xí)之Object.defineProperty 對(duì)數(shù)組監(jiān)聽:上一篇中,我們介紹了一下defineProperty 對(duì)對(duì)象的監(jiān)聽,這一篇我們看下defineProperty 對(duì)數(shù)組的監(jiān)聽 數(shù)組的變化 先讓我們了解下Object.defineProperty()對(duì)數(shù)組變化的跟蹤情況: var a={}; bValue=1; Object.defineProper

上一篇中,我們介紹了一下defineProperty 對(duì)對(duì)象的監(jiān)聽,這一篇我們看下defineProperty 對(duì)數(shù)組的監(jiān)聽

數(shù)組的變化

先讓我們了解下Object.defineProperty()對(duì)數(shù)組變化的跟蹤情況:

var a={};
bValue=1;
Object.defineProperty(a,"b",{
 set:function(value){
 bValue=value;
 console.log("setted");
 },
 get:function(){
 return bValue;
 }
});
a.b;//1
a.b=[];//setted
a.b=[1,2,3];//setted
a.b[1]=10;//無
輸出 a.b.push(4);//無輸出 a.b.length=5;//無輸出 a.b;//[1,10,3,4,undefined];

可以看到,當(dāng)a.b被設(shè)置為數(shù)組后,只要不是重新賦值一個(gè)新的數(shù)組對(duì)象,任何對(duì)數(shù)組內(nèi)部的修改都不會(huì)觸發(fā)setter方法的執(zhí)行。這一點(diǎn)非常重要,因?yàn)榛贠bject.defineProperty()方法的現(xiàn)代前端框架實(shí)現(xiàn)的數(shù)據(jù)雙向綁定也同樣無法識(shí)別這樣的數(shù)組變化。因此第一點(diǎn),如果想要觸發(fā)數(shù)據(jù)雙向綁定,我們不要使用arr[1]=newValue;這樣的語句來實(shí)現(xiàn);第二點(diǎn),框架也提供了許多方法來實(shí)現(xiàn)數(shù)組的雙向綁定。

對(duì)于框架如何實(shí)現(xiàn)數(shù)組變化的監(jiān)測(cè),大多數(shù)情況下,框架會(huì)重寫Array.prototype.push方法,并生成一個(gè)新的數(shù)組賦值給數(shù)據(jù),這樣數(shù)據(jù)雙向綁定就會(huì)觸發(fā)。

實(shí)現(xiàn)簡單的對(duì)數(shù)組的變化的監(jiān)聽

var arrayPush = {};
(function(method){
 var original = Array.prototype[method];
 arrayPush[method] = function() {
 // this 指向可通過下面的測(cè)試看出
 console.log(this);
 return original.apply(this, arguments)
 };
})('push');

var testPush = [];
testPush.__proto__ = arrayPush;
// 通過
輸出,可以看出上面所述 this 指向的是 testPush // [] testPush.push(1); // [1] testPush.push(2);

在官方文檔,所需監(jiān)視的只有 push()、pop()、shift()、unshift()、splice()、sort()、reverse() 7 種方法。我們可以遍歷一下:

var arrayProto = Array.prototype
var arrayMethods = Object.create(arrayProto)

;[
 'push',
 'pop',
 'shift',
 'unshift',
 'splice',
 'sort',
 'reverse'
].forEach(function(item){
 Object.defineProperty(arrayMethods,item,{
 value:function mutator(){
 //緩存原生方法,之后調(diào)用
 console.log('array被訪問');
 var original = arrayProto[item] 
 var args = Array.from(arguments)
 original.apply(this,args)
 // console.log(this);
 },
 })
})

完整代碼

function Observer(data){
 this.data = data;
 this.walk(data);
}

var p = Observer.prototype;
var arrayProto = Array.prototype
var arrayMethods = Object.create(arrayProto)

;[
 'push',
 'pop',
 'shift',
 'unshift',
 'splice',
 'sort',
 'reverse'
].forEach(function(item){
 Object.defineProperty(arrayMethods,item,{
 value:function mutator(){
 //緩存原生方法,之后調(diào)用
 console.log('array被訪問');
 var original = arrayProto[item] 
 var args = Array.from(arguments)
 original.apply(this,args)
 // console.log(this);
 },
 })
})

p.walk = function(obj){
 var value;
 for(var key in obj){
 // 通過 hasOwnProperty 過濾掉一個(gè)對(duì)象本身擁有的屬性 
 if(obj.hasOwnProperty(key)){
 value = obj[key];
 // 遞歸調(diào)用 循環(huán)所有對(duì)象出來
 if(typeof value === 'object'){
 if (Array.isArray(value)) {
 var augment = value.__proto__ ? protoAugment : copyAugment 
 augment(value, arrayMethods, key)
 observeArray(value)
 }
 new Observer(value);
 }
 this.convert(key, value);
 }
 }
};

p.convert = function(key, value){
 Object.defineProperty(this.data, key, {
 enumerable: true,
 configurable: true,
 get: function(){
 console.log(key + '被訪問');
 return value;
 },
 set: function(newVal){
 console.log(key + '被修改,新' + key + '=' + newVal);
 if(newVal === value) return ;
 value = newVal;
 }
 })
}; 

var data = {
 user: {
 // name: 'zhangsan',
 age: function(){console.log(1)}
 },
 apg: [{'a': 'b'},2,3]
}

function observeArray (items) {
 for (var i = 0, l = items.length; i < l; i++) {
 observe(items[i])
 }
}

//數(shù)據(jù)重復(fù)Observer
function observe(value){
 if(typeof(value) != 'object' ) return;
 var ob = new Observer(value)
 return ob;
}

//輔助方法
function def (obj, key, val) {
 Object.defineProperty(obj, key, {
 value: val,
 enumerable: true,
 writable: true,
 configurable: true
 })
}

// 兼容不支持__proto__的方法
//重新賦值A(chǔ)rray的__proto__屬性
function protoAugment (target,src) {
 target.__proto__ = src
}
//不支持__proto__的直接修改相關(guān)屬性方法
function copyAugment (target, src, keys) {
 for (var i = 0, l = keys.length; i < l; i++) {
 var key = keys[i]
 def(target, key, src[key])
 }
}

var app = new Observer(data);
// data.apg[2] = 111;
data.apg.push(5);
// data.apg[0].a = 10;
// console.log(data.apg);

聲明:本網(wǎng)頁內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問題請(qǐng)及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文檔

vue源碼學(xué)習(xí)之Object.defineProperty 對(duì)數(shù)組監(jiān)聽

vue源碼學(xué)習(xí)之Object.defineProperty 對(duì)數(shù)組監(jiān)聽:上一篇中,我們介紹了一下defineProperty 對(duì)對(duì)象的監(jiān)聽,這一篇我們看下defineProperty 對(duì)數(shù)組的監(jiān)聽 數(shù)組的變化 先讓我們了解下Object.defineProperty()對(duì)數(shù)組變化的跟蹤情況: var a={}; bValue=1; Object.defineProper
推薦度:
  • 熱門焦點(diǎn)

最新推薦

猜你喜歡

熱門推薦

專題
Top