国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

Proxy介紹

ZHAO_ / 815人閱讀

摘要:拋出當被檢查的屬性鍵存在與目標對象中,且該屬性的配置是時,該監聽方法不能返回。也可以將類作為目標監聽對象,并監聽其通過語句來生產新實例的行為,這同樣可以使用再作為構造器的構造函數上。這里返回的結果會是所得到的實例創建可解除對象用法。

Proxy 讓我們可以對任何對象的絕大部分行為進行監聽和干涉,實現更多的自定義程序行為。
用法:new Proxy(target, handler)。
?? Proxy 通過設置行為監聽方法來捕獲程序對對應對象的行為。

    const obj = {};
    const proxy = new Proxy(obj, {
        // ...
    })

Proxy 的構造器接受兩個參數,第一個參數為需要進行包裝的目標對象,第二個參數則為用于監聽目標對象行為的監聽器,其中監聽器可以接受一些參數以監聽相對應的程序行為。
監聽屬性、參數及監聽內容

屬性值 監聽器參數 監聽內容
has (target, prop) 監聽 in 語句的使用
get (target, prop, reciver) 監聽目標對象的屬性讀取
set (target, prop, value, reciver) 監聽目標對象的屬性賦值
deleteProperty (target, prop) 監聽 delete 語句對目標對象的刪除屬性行為
ownKeys (target) 監聽 Object.getOwnPropertyName() 的讀取
apply (target, thisArg, arguments) 監聽目標函數(作為目標對象)的調用行為
construct (target, arguments, newTarget) 監聽目標構造函數(作為目標對象)利用 new 而生成實例的行為
getPrototypeOf (target) 監聽 Objext.getPrototypeOf() 的讀取
setPrototypeOf (target, prototype) 監聽 Objext.setPrototypeOf() 的調用
isExtensible (target) 監聽 Objext.isExtensible() 的讀取
preventExtensions (target) 監聽 Objext.preventExtensions() 的讀取
getOwnPropertyDescriptor (target, prop) 監聽 Objext.getOwnPropertyDescriptor() 的調用
defineProperty (target, property, descriptor) 監聽 Object.defineProperty() 的調用
has

可以通過為 Proxy 的 handler 定義 has 監聽方法,來監聽程序通過 in 語句來檢查一個字符串或數字是否為該 Proxy 的目標對象中某個屬性的屬性鍵的過程。

const p = new Proxy({}, {
    has(target, prop){
        console.log(`Checking "${prop}" is in the target or not`);
        return true;
    }
})

console.log("foo" in p);
// Checking "foo" is in the target or not
// true
該監聽方法有兩個需要注意的地方,如果遇到這兩種情況,便會拋出 TypeError 錯誤。

1.當目標對象被其他程序通過 Object.preventExtensions() 禁用了屬性拓展 (該對象無法再增加新的屬性,只能對當前已有的屬性進行操作,包括讀取、操作和刪除,但是一旦刪除就無法再定義) 功能,且被檢查的屬性鍵確實存在與目標對象中,該監聽方法便不能返回 false。

const obj = {foo: 1};

Object.preventExtensions(obj);

const p = new Proxy(obj, {
    has(target, prop){
        console.log(`Checking "${prop}" is in the target or not`);
        return false; 
    }
})

console.log("foo" in p);   
//拋出Uncaught TypeError: 

2.當被檢查的屬性鍵存在與目標對象中,且該屬性的 configurable 配置是 false 時,該監聽方法不能返回 false。

const obj = {};

Object.defineProperty(obj, "foo", {
    configurable: false,
    value: 10
})

const p = new Proxy(obj, {
    has(target, prop){
        console.log(`Checking "${prop}" is in the target or not`);
        return false;
    }
})

console.log("foo" in p);
//拋出Uncaught TypeError: 
get

Getter只能對已知的屬性鍵進行監聽,而無法對所有屬性讀取行為進行攔截,而 Proxy 可以通過設定 get 監聽方法,攔截和干涉目標對象的所有屬性讀取行為。

const obj = {foo: 1};
const p = new Proxy(obj, {
    get(target, prop){
        console.log(`Program is trying to fetch the property "${prop}".`);
        return target[prop];
    }
})

alert(p.foo);  // Program is trying to fetch the property "foo".
alert(p.something);    // Program is trying to fetch the property "something".

??這個監聽方法也存在需要注意的地方——當目標對象被讀取屬性的 configurable 和 writable 屬性都為 false 時,監聽方法最后返回的值必須與目標對象的原屬性值一致。

const obj = {};

Object.defineProperty(obj, "foo", {
    configurable: false,
    value: 10,
    writable: false
})

const p = new Proxy(obj, {
    get(target, prop){
        return 20;
    }
})

console.log(p.foo);
set

??handler.set 用于監聽目標對象的所有屬性賦值行為。注意,如果目標對象自身的某個屬性是不可寫也不可配置的,那么 set 不得改變這個屬性的值,只能返回同樣的值,否則報錯。

const obj = {};
const p = new Proxy(obj, {
    set(target, prop, value){
        console.log(`Setting value "${value}" on the key "${prop}" in the target object`);
        target[prop] = value;
        return true;
    }
})

p.foo = 1;  
// Setting value "1" on the key "foo" in the target object
apply

handler.apply , Proxy 也為作為目標對象的函數提供了監聽其調用行為的屬性。

const sum = function(...args) {
  return args
    .map(Number)
    .filter(Boolean)
    .reduce((a, b) => a + b);

}

const p = new Proxy(sum, {
  apply(target, thisArg, args) {
    console.log(`Function is being called with arguments [${args.join()}] and context ${thisArg}`);
    return target.call(thisArg, ...args);
  }
})

console.log(p(1, 2, 3));
// Function is being called with arguments [1,2,3] and context undefined
// 6
construct

??handler.construct, Proxy 也可以將類作為目標監聽對象,并監聽其通過 new 語句來生產新實例的行為,這同樣可以使用再作為構造器的構造函數上。

class Foo{};

const p = new Proxy(Foo, {
    construct(target, args, newTarget){
        return {arguments: args}    // 這里返回的結果會是 new 所得到的實例
    }
});

const obj = new p(1, 2, 3);
console.log(obj.arguments);  // [1, 2, 3]
創建可解除 Proxy 對象

用法:Proxy.revocable(target, handler) : (proxy, revoke)。

const obj = {foo: 10};
const revocable = Proxy.revocable(obj, {
    get(target, prop){
        return 20;
    }
})
const proxy = revocable.proxy;
console.log(proxy.foo); // 20
revocable.revoke();
console.log(proxy.foo); 
// TypeError: Cannot perform "get" on a proxy that has been revoked

??Proxy.revocable(target, handler) 會返回一個帶有兩個屬性的對象,其中一個 proxy 便是該函數所生成的可解除 Proxy 對象,而另一個 revoke 則是將剛才的 Proxy 對象解除的解除方法。

文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。

轉載請注明本文地址:http://m.specialneedsforspecialkids.com/yun/99895.html

相關文章

  • 關于如何快速調教Nginx的幾點總結

    摘要:關于如何快速調教的幾點總結關于的好與壞,我覺得沒有必要去介紹了,在這里主要分享一下我在實際的項目部署中是如何快速的調教的。 關于如何快速調教Nginx的幾點總結 關于Nginx的好與壞,我覺得沒有必要去介紹了,在這里主要分享一下我在實際的項目部署中是如何快速的調教Nginx的。其中分享的源碼大家可以作為模板代碼,根據自身項目的實際情況,酌情使用。 這里簡單的說一說我為什么要寫這篇文章,...

    yacheng 評論0 收藏0
  • 【重溫基礎】14.元編程

    摘要:本文是重溫基礎系列文章的第十四篇。元,是指程序本身。有理解不到位,還請指點,具體詳細的介紹,可以查看維基百科元編程。攔截,返回一個布爾值。 本文是 重溫基礎 系列文章的第十四篇。 這是第一個基礎系列的最后一篇,后面會開始復習一些中級的知識了,歡迎持續關注呀! 接下來會統一整理到我的【Cute-JavaScript】的JavaScript基礎系列中。 今日感受:獨樂樂不如眾樂樂...

    cc17 評論0 收藏0

發表評論

0條評論

ZHAO_

|高級講師

TA的文章

閱讀更多
最新活動
閱讀需要支付1元查看
<