Vue中对Array拓展的方法 Posted on 2021-10-14 Edited on 2025-07-03 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)
Vue总结(一) Posted on 2019-02-26 Edited on 2025-07-03 In Vue :class 绑定12345678910111213<div id="app"> <h1 :class="['italic', 'red', {'active': flag}]">Test H1 Message</h1> <h1 :class="classObj">Test H1 Message</h1></div><script>var vm = new Vue({ el: "#app", data: { flag: true, classObj: { red: true, thin: true, italic: true, active: false }, },})</script> Read more »
Vue总结(三) Posted on 2019-02-26 Edited on 2025-07-03 In Vue computed123456789101112131415161718192021<div id="app"> <input type="text" v-model="firstName">+ <input type="text" v-model="lastName">= <input type="text" v-model="fullName"></div><script>var vm = new Vue({ el: "#app", data: { firstName: "", lastName: "", }, computed: { // 使用计算属性不需要() // 只要此function中使用的任何数据发生变化,就会重新计算值 fullName: function () { return this.firstName + "-" + this.lastName }, },})</script> Read more »
Vue总结(二) Posted on 2019-02-26 Edited on 2025-07-03 In Vue filter12345678910Vue.filter("msgFormat", function (msg, arg) { return msg.replace(/test/g, arg)})Vue.filter("test", function (msg) { return msg + "===="})var vm = new Vue({ el: "#app", data: { msg: "test1 test2 test3" },}) Read more »