- ES6 教程
- ES6 - 首页
- ES6 - 概述
- ES6 - 环境
- ES6 - 语法
- ES6 - 变量
- ES6 - 运算符
- ES6 - 决策
- ES6 - 循环
- ES6 - 函数
- ES6 - 事件
- ES6 - Cookie
- ES6 - 页面重定向
- ES6 - 对话框
- ES6 - Void 关键字
- ES6 - 页面打印
- ES6 - 对象
- ES6 - 数字
- ES6 - 布尔值
- ES6 - 字符串
- ES6 - Symbol
- ES6 - 新的字符串方法
- ES6 - 数组
- ES6 - 日期
- ES6 - 数学
- ES6 - 正则表达式
- ES6 - HTML DOM
- ES6 - 迭代器
- ES6 - 集合
- ES6 - 类
- ES6 - Map 和 Set
- ES6 - Promise
- ES6 - 模块
- ES6 - 错误处理
- ES6 - 对象扩展
- ES6 - Reflect API
- ES6 - Proxy API
- ES6 - 验证
- ES6 - 动画
- ES6 - 多媒体
- ES6 - 调试
- ES6 - 图像地图
- ES6 - 浏览器
- ES7 - 新特性
- ES8 - 新特性
- ES9 - 新特性
- ES6 有用资源
- ES6 - 快速指南
- ES6 - 有用资源
- ES6 - 讨论
ES6 - Reflect.set()
这是一个将值赋予属性的函数。它返回一个布尔值,如果更新成功则为真。
语法
下面提到的语法适用于函数set(),其中,
target 是要设置值的属性的名称。
propertyKey 是要获取的属性的名称。
Receiver 是如果遇到 setter,则为对 target 的调用提供的 this 值。这是一个可选参数。
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
广告