vue源碼進修:Object.defineProperty 對數組監聽

上一篇中,我們引見了一下defineProperty 對對象的監聽,這一篇我們看下defineProperty 對數組的監聽

數組的變化
先讓我們了解下Object.defineProperty()對數組變化的跟蹤狀況:

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];

能夠看到,當a.b被設置為數組后,只需不是從新賦值一個新的數組對象,任何對數組內部的修正都不會觸發setter要領的實行。這一點非常重要,由於基於Object.defineProperty()要領的當代前端框架完成的數據雙向綁定也一樣沒法辨認如許的數組變化。因而第一點,假如想要觸發數據雙向綁定,我們不要運用arr[1]=newValue;如許的語句來完成;第二點,框架也供應了很多要領來完成數組的雙向綁定。
關於框架怎樣完成數組變化的監測,大多數狀況下,框架會重寫Array.prototype.push要領,並天生一個新的數組賦值給數據,如許數據雙向綁定就會觸發。

完成簡樸的對數組的變化的監聽

var arrayPush = {};

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

var testPush = [];
testPush.__proto__ = arrayPush;
// 經由過程輸出,能夠看出上面所述 this 指向的是 testPush
// []
testPush.push(1);
// [1]
testPush.push(2);

在官方文檔,所需看管的只要 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(){
            //緩存原生要領,以後挪用
            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(){
            //緩存原生要領,以後挪用
            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 過濾掉一個對象自身具有的屬性 
        if(obj.hasOwnProperty(key)){
            value = obj[key];
            // 遞歸挪用 輪迴一切對象出來
            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])
    }
}

//數據反覆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__的要領
//從新賦值Array的__proto__屬性
function protoAugment (target,src) {
  target.__proto__ = src
}
//不支持__proto__的直接修正相干屬性要領
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);
    原文作者:iiijarvis
    原文地址: https://segmentfault.com/a/1190000015075679
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞