<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
const obj = {}; Object.defineProperty(obj,prop,descript);
返回值:被傳遞給函數的物件
descript接收一個物件作為設定:
屬性是否可寫 預設值fasle
屬性的值 預設值false
屬性是否可列舉,關係到能否被for…in、Object.keys()以及in關鍵字遍 預設值false
使用defineProperty定義的屬性descript預設值全為false
const obj = {}; obj.name = 'a'; //等同於 Object.defineProperty(obj,'name',{ configurable: true, value: 'a', writable: true, enumerable: true, }); conts obj1 = Object.defineProperty({},'name',{value: 'jack'}); //等同於 Object.defineProperty({},'name',{ value: 'jack', enumerable: false, writable: false, configurable: fasle, })
value和writable不能和setter與getter一起使用
const obj = Object.defineProperty({},name,{ writable:true, value: 'jack', set:function(newVal){ return newVal; }, get:function(val){ return val; } });
執行上面的程式碼出現異常:
Uncaught TypeError: property descriptors must not specify a value or be writable when a getter or setter has been specified.
也就是說我們使用writable和value或者set和get去定義屬性的讀寫,不能混合使用
const obj = Object.defineProperty({},name,{ writable:true, }); const obj1 = Object.defineProperty({},name,{ set:function(newVal){ return newVal; }, get:function(val){ return val; } }); obj.name = 'ian'; obj1.name = 'jack';
Object.defineProperties用法與Object.definePropert一致,可以同時定義多個屬性
const obj = Object.defineProperties(obj, { name: { configurable: true, enumerable: true, writable: true, value: 'ian', }, gender: { writable: false, value: 'male' }, age: { set: function (val) { return val }, set: function (val) { return val }, } });
proxy的功能是代理物件,用於攔截物件的基本操作和自定義,與Object.defineProperty類似,區別是proxy代理整個物件,defineProperty只能代理某個屬性。
語法
const obj = {}; const proxyObj = new Proxy({obj, handler});
handler 物件的方法:
Object.setPropertyOf的捕捉器
Object.isExtensible的捕捉器
Object.preventExtensions方法的捕捉器
Object.getOwnPropertyDescriptor方法的捕捉器
Object.definePropert方法的捕捉器
in操作符的捕捉器
delete操作符的捕捉器
屬性設定操作的捕捉器
屬性獲取操作的捕捉器
Object.getOwnPropertyNames和Object.getOwnSymbos的捕捉器
函數呼叫操作的捕捉器
new操作符的捕捉器
使用get捕捉器
const obj = { name: 'ian', age: 21 }; const proxyObj = new Proxy(obj, { get: function (obj, prop) { return prop in obj ? obj[prop] : 'prop not existent'; }, }); console.log(proxyObj.gender); //prop not existent
使用set捕捉器驗證屬性值
const obj = { name: 'ian' }; const proxyObj = new Proxy(obj, { set: function (obj, prop, value) { if (prop === 'age') { if (typeof value !== 'number') { throw new TypeError('The age is not Integer'); }; if (value > 200) { throw new RangeError('The age is not invalid'); }; } obj[prop] = value; //標識修改成功 return true; } }); proxyObj.gender = 'male'; //male proxyObj.age = '二十'; // Uncaught TypeError: The age is not Integer proxyObj.age = 201; //Uncaught RangeError: The age is not invalid proxyObj.age = 20; //20
捕獲new操作符
function Person(name) { this.name = name; }; const ProxyPerson = new Proxy(Person, { construct: function (target, args) { //使用原本的建構函式 return new Person(...args); } }) var jack = new ProxyPerson('jack'); console.log(jack);//Object { name: "jack" }
捕獲函數呼叫
//執行原本的函數 const proxyFoo = new Proxy(log,{ apply:function(target,that,args){ target(args); } }); proxyFoo('foo'); //foo //自定義函數 const proxyFoo1 = new Proxy(log, { apply: function (target, that, args) { //將log改成alert執行 alert(args); } }); proxyFoo1('foo'); //foo
當我們去存取一個資料的時候,不直接去存取資料,而是通過代理(Proxy)作為一箇中間者替我們去獲取和設定資料,在proxy層可以做一些存取控制等, 例如進行資料的校驗數,據合法後再設定給原資料,起到一個保護和校驗的功能。常見的代理模式有:
給被呼叫者提供存取控制,確認呼叫者的許可權
用來代替巨大的物件,確保在需要的時候才被建立
到此這篇關於JavaScript Object.defineProperty與proxy代理模式的使用詳細分析的文章就介紹到這了,更多相關JS Object.defineProperty與proxy內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45