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


ES6 Reflect.get()用法及代码示例



这是一个返回属性值的函数。

用法

函数的语法get()下面给出,其中,

  • target是在其上获取属性的目标对象。

  • propertyKey是要获取的属性的名称。

  • Receiver如果遇到 getter,则是为调用 target 提供的 this 值。这是一个可选参数。

Reflect.get(target, propertyKey[, receiver])

示例

下面的示例使用反射创建类 Student 的实例,并使用Reflect.get() method

<script>
   class Student{
      constructor(firstName,lastName){
         this.firstName = firstName
         this.lastName = lastName
      }

      get fullName(){
         return `${this.firstName}:${this.lastName}`
      }
   }
   const args = ['Tutorials','Point']
   const s1 = Reflect.construct(Student,args)
   console.log('fullname is ',Reflect.get(s1,'fullName'))

   console.log('firstName is ',Reflect.get(s1,'firstName'))
</script>

上面代码的输出将如下所示——

fullname is Tutorials:Point
firstName is Tutorials

相关用法


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