您好,登錄后才能下訂單哦!
今天就跟大家聊聊有關(guān)在vue項(xiàng)目中Proxy與defineProperty有哪些不同的地方,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。
Proxy的出現(xiàn),給vue響應(yīng)式帶來(lái)了極大的便利,比如可以直接劫持?jǐn)?shù)組、對(duì)象的改變,可以直接添加對(duì)象屬性,但是兼容性可能會(huì)有些問(wèn)題
Proxy可以劫持的數(shù)組的改變,defineProperty 需要變異
defineProperty 中劫持?jǐn)?shù)組變化的變異的方法
可以理解為在數(shù)組實(shí)例和原型之間,插入了一個(gè)新的原型的對(duì)象,這個(gè)原型方法實(shí)現(xiàn)了變異的方法,也就真正地?cái)r截了數(shù)組原型上的方法
我們來(lái)看下vue2.x的源碼
// vue 2.5.0 var arrayProto = Array.prototype; var arrayMethods = Object.create(arrayProto); // Array {} function def(obj, key, val, enumerable) { Object.defineProperty(obj, key, { value: val, enumerable: !!enumerable, writable: true, configurable: true }); } var methodsToPatch = [ 'push', 'pop', 'shift', 'unshift', 'splice', 'sort', 'reverse' ]; /** * Intercept mutating methods and emit events */ methodsToPatch.forEach(function(method) { // cache original method var original = arrayProto[method]; // 比如 method是push,則結(jié)果為 // ? push() { [native code] } def(arrayMethods, method, function mutator() { var args = [], len = arguments.length; while (len--) args[len] = arguments[len]; var result = original.apply(this, args); var ob = this.__ob__; var inserted; switch (method) { case 'push': case 'unshift': inserted = args; break case 'splice': inserted = args.slice(2); break } if (inserted) { ob.observeArray(inserted); } // notify change ob.dep.notify(); return result }); }); /** * Observe a list of Array items. */ Observer.prototype.observeArray = function observeArray(items) { for (var i = 0, l = items.length; i < l; i++) { observe(items[i]); // 后續(xù)的邏輯 } };
Proxy可以直接劫持?jǐn)?shù)組的改變
let proxy = new Proxy(fruit, { get: function (obj, prop) { return prop in obj ? obj[prop] : undefined }, set: function (obj, prop, newVal) { obj[prop] = newVal console.log("newVal", newVal) // 輸出{ name: "lemon", num: 999 } return true; } }) proxy.push({ name: "lemon", num: 999 }) console.log(fruit)
Proxy代理可以劫持對(duì)象的改變,defineProperty需要遍歷
defineProperty
let fruit = { "apple": 2, "pear": 22, "peach": 222 } Object.keys(fruit).forEach(function (key) { Object.defineProperty(fruit[i], key, { enumerable: true, configurable: true, get: function () { return val; }, set: function (newVal) { val = newVal; // 輸出 newVal 888 console.log("newVal", newVal) } }) }) fruit.apple = 888
Proxy
let fruit = { "apple": 2, "pear": 22, "peach": 222 } let proxy = new Proxy(fruit, { get: function (obj, prop) { return prop in obj ? obj[prop] : undefined }, set: function (obj, prop, newVal) { obj[prop] = newVal console.log("newVal", newVal) // 輸出 newVal 888 return true; } }) proxy.apple = 888
Proxy代理可以劫持對(duì)象屬性的添加,defineProperty用this.$set來(lái)實(shí)現(xiàn)
defineProperty,如果屬性不存在,則需要借助this.$set
<div id="app"> <span v-for="(value,name) in fruit">{{name}}:{{value}}個(gè) </span> <button @click="add()">添加檸檬</button> </div> <script src="https://unpkg.com/vue"></script> <script> new Vue({ el: '#app', data() { return { fruit: { apple: 1, banana: 4, orange: 5 } } }, methods: { add() { this.fruit.lemon = 5; // 不會(huì)讓視圖發(fā)生變化 // this.$set(this.fruit,"lemon",5) // this.$set可以 } } }) </script>
Object.keys(fruit).forEach(function (key) { Object.defineProperty(fruit, key, { enumerable: true, configurable: true, get: function () { return val; }, set: function (newVal) { val = newVal; console.log("newVal", newVal) // 根本沒(méi)有進(jìn)去這里 } }) })
Proxy 直接可以添加屬性
// vue 3 <div id="app"> <span v-for="(value,name) in fruit">{{name}}:{{value}}個(gè) </span> <button @click="add()">添加檸檬</button> </div> <script src="https://unpkg.com/vue@next"></script> <script> Vue.createApp({ data() { return { fruit: { apple: 1, banana: 4, orange: 5 } } }, methods: { add() { this.fruit.lemon = 5; // 這樣子是可以的 } } }).mount('#app') // vue 3 不再是使用el屬性,而是使用mount </script>
let proxy = new Proxy(fruit, { get: function (obj, prop) { return prop in obj ? obj[prop] : undefined }, set: function (obj, prop, newVal) { obj[prop] = newVal console.log("newVal", newVal) // lemon, 888 return true; } }) proxy.lemon = 888
Proxy
其他屬性
應(yīng)用場(chǎng)景 promisify化
用Proxy寫(xiě)一個(gè)場(chǎng)景,請(qǐng)求都是通過(guò)回調(diào),如果我們需要用promise包一層的話,則可以
// server.js // 假設(shè)這里都是回調(diào) export const searchResultList = function (data, callback, errorCallback) { axios.post(url, data, callback, errorCallback) }
// promisify.js import * as server from './server.js' const promisify = (name,obj) => (option) => { return new Promise((resolve, reject) => { return obj[name]( option, resolve, reject, ) }) } const serverPromisify = new Proxy(server, { get (target,prop) { return promisify(prop, server) } }) export default serverPromisify
使用
// index.js import serverPromisify from './serverPromisify' serverPromisify.searchResultList(data).then(res=>{ })
看完上述內(nèi)容,你們對(duì)在vue項(xiàng)目中Proxy與defineProperty有哪些不同的地方有進(jìn)一步的了解嗎?如果還想了解更多知識(shí)或者相關(guān)內(nèi)容,請(qǐng)關(guān)注億速云行業(yè)資訊頻道,感謝大家的支持。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。