Vue中对Array拓展的方法 Posted on 2021-10-14 In Vue 原理通过改写[].__proto__上的方法,实现对Array原生方法的拦截。 源码位置为 /core/instance/observer/array.js 123456789101112131415161718192021222324252627282930313233343536// cache the original Array.prototypeconst originalPrototype = Array.prototype// create an object from original Array.prototypeconst arrayMethods = Object.create(originalPrototype)const methodsToPatch = [ "push", "pop", "shift", "unshift", "splice", "sort", "reverse",]methodsToPatch.forEach((method) => { arrayMethods[method] = function (...args) { // use original Array methods to get the result const result = originalPrototype[method].apply(this, args) // proxy here console.log(`catch ${method}`) return result }})const a = [1, 2, 3]a.__proto__ = arrayMethodsa.push(1)a.reverse()a.pop()console.log(a)