zoukankan      html  css  js  c++  java
  • ECMA Script 6_行为重定义 Proxy

    行为重定义 Proxy

    在目标对象之前架设一层“拦截”,外界对该对象的访问,都必须先通过这层拦截

    因此提供了一种机制,可以对外界的访问进行过滤和改写

    Proxy 这个词的原意是代理,用在这里表示由它来"代理"某些操作,可以译为 "代理器"

    • var obj = new Proxy({}, {
          get: function (target, key, receiver) {
              console.log(`getting ${key}!`);
              return Reflect.get(target, key, receiver);
          },
          set: function (target, key, value, receiver) {
              console.log(`setting ${key}!`);
              return Reflect.set(target, key, value, receiver);
          }
      });    // 返回一个 有代理的 新对象

      /**** ****/

        obj.count = 1;
        // setting count!


        ++obj.count;
        // getting count!
        // setting count!
        // 2

       

    上面代码对一个空对象架设了一层拦截,重定义了属性的读取(get)和设置(set)行为。

    Proxy 实际上重载(overload)了点运算符,即用自己的定义覆盖了语言的原始定义

    5

    5

    5

    5

    5

    5

    5

    5

    5

    5

    5

    5

    5

    5

    5

    5

    5

    5

    5

    5

    5

    5

    5

    5

    5

    5

    5

    5

    5

    5

    5

    5

    5

    5

    5

    5

    5

    5

    5

    5

    5

    5

    5

    5

    5

    5

    5

    5

    5

    5

    5

    5

    5

    5

    --------小尾巴 ________一个人欣赏-最后一朵颜色的消逝-忠诚于我的是·一颗叫做野的心.决不受人奴役.怒火中生的那一刻·终将结束...
  • 相关阅读:
    IfcFlowDirectionEnum
    QAxWidget
    IfcDistributionFlowElementType
    IfcBuildingElementProxy 概念用法
    opencv图片旋转90度
    IfcMaterialList
    IfcDistributionChamberElement
    IfcArithmeticOperatorEnum
    FileWriter
    IfcDistributionChamberElementType
  • 原文地址:https://www.cnblogs.com/tianxiaxuange/p/10140144.html
Copyright © 2011-2022 走看看