当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


ES6 handler.has()用法及代码示例



下面的示例定义了一个类 Student,其构造函数采用firstNamelastName作为参数。该程序创建一个代理并定义一个处理程序对象。这has() method每当使用 in 运算符时都会调用处理程序对象的 。

<script>
   class Student{
      constructor(firstName,lastName){
         this.firstName = firstName
         this.lastName = lastName
      }
   }
   const handler = {
      has:function(target,property){
         console.log('Checking for '+property+' in the object')
         return Reflect.has(target,property)
      }
   }

   const s1 = new Student("Tutorials","Point")
   const proxy = new Proxy(s1,handler)
   console.log('firstName' in proxy)
</script>

上面代码的输出将如下面提到的那样——

Checking for firstName in the object
true

相关用法


注:本文由纯净天空筛选整理自 ES6 - handler.has()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。