这是一个为属性赋值的函数。如果更新成功,它返回一个布尔值为真。
用法
下面提到的语法是针对函数的set(),其中,
target是要获取要设置的值的属性的名称。
propertyKey是要获取的属性的名称。
Receiver如果遇到 setter,则为对目标的调用提供此值。这是一个可选参数。
Reflect.set(target, propertyKey, value[, receiver])
示例
下面的示例使用反射创建类 Student 的实例,并使用Reflect.set()方法。
<script>
class Student{
constructor(firstName,lastName){
this.firstName = firstName
this.lastName = lastName
}
get fullName(){
return `${this.firstName}:${this.lastName}`
}
}
const args = ['Tutorials','']
const s1 = Reflect.construct(Student,args)
console.log('fullname is ',Reflect.get(s1,'fullName'))
//setting value
Reflect.set(s1,'lastName','Point')
console.log('fullname is ',Reflect.get(s1,'fullName'))
</script>
上面代码的输出将如下所示——
fullname is Tutorials: fullname is Tutorials:Point
相关用法
- ES6 Reflect.construct()用法及代码示例
- ES6 Reflect.apply()用法及代码示例
- ES6 Reflect.has()用法及代码示例
- ES6 Reflect.get()用法及代码示例
- ES6 RegExp split()用法及代码示例
- ES6 RegExp replace()用法及代码示例
- ES6 RegExp exec()用法及代码示例
- ES6 RegExp test()用法及代码示例
- ES6 RegExp toString()用法及代码示例
- ES6 RegExp search()用法及代码示例
- ES6 Array every()用法及代码示例
- ES6 Array reduceRight()用法及代码示例
- ES6 handler.set()用法及代码示例
注:本文由纯净天空筛选整理自 ES6 - Reflect.set()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。