search
HomeWeb Front-endJS TutorialDetailed introduction to Proxy in JavaScript (code example)

This article brings you a detailed introduction (code example) about Proxy in JavaScript. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.

Proxy allows us to monitor and interfere with most behaviors of any object and achieve more customized program behaviors.

Usage: new Proxy(target, handler).

Proxy captures the program's behavior on the corresponding object by setting a behavior monitoring method.

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

The constructor of Proxy accepts two parameters. The first parameter is the target object that needs to be packaged. The second parameter is the listener used to monitor the behavior of the target object. The listener can accept some Parameters to monitor the corresponding program behavior.
Monitoring properties, parameters and monitoring content

Attribute value Listener parameters Monitoring content
has (target, prop) Use of monitoring in statement
get (target, prop, reciver) Listen to the property reading of the target object
set (target, prop, value, reciver) Listen to the property assignment of the target object
deleteProperty (target, prop) Listen to the delete statement on the target object Deletion property behavior
ownKeys (target) Listen to the reading of Object.getOwnPropertyName()
apply (target, thisArg, arguments) Listen to the calling behavior of the target function (as the target object)
construct (target, arguments, newTarget) Listen to the behavior of the target constructor (as the target object) using new to generate an instance
getPrototypeOf (target) Listen to the reading of Objext.getPrototypeOf()
setPrototypeOf (target, prototype) Listen The call of Objext.setPrototypeOf()
isExtensible (target) Monitor the reading of Objext.isExtensible()
preventExtensions (target) Listen to the reading of Objext.preventExtensions()
getOwnPropertyDescriptor (target, prop) Listen to the call of Objext.getOwnPropertyDescriptor()
defineProperty (target, property, descriptor) Listen to the call of Object.defineProperty()

has

You can define the has listening method for the Proxy handler to check the listening program through the in statement The procedure of whether a string or number is the property key of a property in the Proxy's target object.

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

There are two things to note about this listening method. If these two situations are encountered, a TypeError will be thrown.

1. When the target object is disabled by other programs through Object.preventExtensions() (the object cannot add new attributes, it can only operate on the currently existing attributes, including reading and operating) and delete, but once deleted, it cannot be redefined) function, and the property key being checked does exist in the target object, the listening method cannot return 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. When the property key being checked exists in the target object and the configurable configuration of the property is false, the listening method cannot return 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 can only monitor known property keys, but cannot intercept all property reading behaviors, while Proxy can intercept and interfere by setting the get listening method. All properties of the target object are read.

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".

This listening method also has something to pay attention to - when the configurable and writable properties of the target object's read properties are both false, the final value returned by the listening method must be consistent with the original property value of the target object. .

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 is used to monitor all property assignment behaviors of the target object. Note that if a property of the target object itself is not writable or configurable, set must not change the value of this property and can only return the same value, otherwise an error will be reported.

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 also provides attributes for monitoring its calling behavior for the function as the target object.

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 can also use the class as the target listening object and monitor its behavior of producing new instances through the new statement. This can also be used as a constructor. on the constructor.

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]

Create a revocable Proxy object

Usage: 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) will return an object with two attributes. One of the proxy is the revocable Proxy object generated by the function, and the other revoke is the revocable Proxy object generated by the function. Dismissal method of Proxy object.

The above is the detailed content of Detailed introduction to Proxy in JavaScript (code example). For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:segmentfault. If there is any infringement, please contact admin@php.cn delete
es6数组怎么去掉重复并且重新排序es6数组怎么去掉重复并且重新排序May 05, 2022 pm 07:08 PM

去掉重复并排序的方法:1、使用“Array.from(new Set(arr))”或者“[…new Set(arr)]”语句,去掉数组中的重复元素,返回去重后的新数组;2、利用sort()对去重数组进行排序,语法“去重数组.sort()”。

JavaScript的Symbol类型、隐藏属性及全局注册表详解JavaScript的Symbol类型、隐藏属性及全局注册表详解Jun 02, 2022 am 11:50 AM

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于Symbol类型、隐藏属性及全局注册表的相关问题,包括了Symbol类型的描述、Symbol不会隐式转字符串等问题,下面一起来看一下,希望对大家有帮助。

原来利用纯CSS也能实现文字轮播与图片轮播!原来利用纯CSS也能实现文字轮播与图片轮播!Jun 10, 2022 pm 01:00 PM

怎么制作文字轮播与图片轮播?大家第一想到的是不是利用js,其实利用纯CSS也能实现文字轮播与图片轮播,下面来看看实现方法,希望对大家有所帮助!

JavaScript对象的构造函数和new操作符(实例详解)JavaScript对象的构造函数和new操作符(实例详解)May 10, 2022 pm 06:16 PM

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于对象的构造函数和new操作符,构造函数是所有对象的成员方法中,最早被调用的那个,下面一起来看一下吧,希望对大家有帮助。

JavaScript面向对象详细解析之属性描述符JavaScript面向对象详细解析之属性描述符May 27, 2022 pm 05:29 PM

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于面向对象的相关问题,包括了属性描述符、数据描述符、存取描述符等等内容,下面一起来看一下,希望对大家有帮助。

javascript怎么移除元素点击事件javascript怎么移除元素点击事件Apr 11, 2022 pm 04:51 PM

方法:1、利用“点击元素对象.unbind("click");”方法,该方法可以移除被选元素的事件处理程序;2、利用“点击元素对象.off("click");”方法,该方法可以移除通过on()方法添加的事件处理程序。

整理总结JavaScript常见的BOM操作整理总结JavaScript常见的BOM操作Jun 01, 2022 am 11:43 AM

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于BOM操作的相关问题,包括了window对象的常见事件、JavaScript执行机制等等相关内容,下面一起来看一下,希望对大家有帮助。

20+道必知必会的Vue面试题(附答案解析)20+道必知必会的Vue面试题(附答案解析)Apr 06, 2021 am 09:41 AM

本篇文章整理了20+Vue面试题分享给大家,同时附上答案解析。有一定的参考价值,有需要的朋友可以参考一下,希望对大家有所帮助。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version