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


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



此方法充当 new 运算符,等效于调用 new target(...args)。

用法

下面给出的语法用于函数construct(),其中,

  • target是要调用的目标函数。

  • argumentsList是一个 array-like 对象,指定应使用哪个目标调用的参数。

  • newTarget是应该使用其原型的构造函数。这是一个可选参数。如果没有值传递给这个参数,它的值为targetparameter

Reflect.construct(target, argumentsList[, newTarget])

示例

下面的示例创建一个具有 fullName 属性的类 Student。类的构造函数以 firstName 和 lastName 作为参数。使用反射创建类 Student 的对象,如下所示。

<script>
   class Student{
      constructor(firstName,lastName){
         this.firstName = firstName
         this.lastName = lastName
      }
      
	  get fullName(){
         return `${this.firstName}:${this.lastName}`
      }
   }
   
   const args = ['Mohammad','Mohtashim']
   const s1 = Reflect.construct(Student,args)
   
   console.log(s1.fullName)

</script>

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

Mohammad:Mohtashim

相关用法


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