字面意思:反映;映出(影像)
// 李四 20;
// 哈哈 10;
分析:
当const 声明person 对象后,该对象被observable初始化,同时该对象的写操作被Proxy所拦截, 调用observe(print)时,print方法被推入Set数据结构,作为缓存,执行person.name = ‘李四’,写操作被激活,调用Set结构中的缓存函数,执行 console.log(${target.name}, ${target.age}
)
当然上面的观察者模式并未对入参进行校验,添加错误检测。但已经足够说明Reflect带来的改变
Reflect是 ES6 为了操作对象而提供的新 API,目的是让对象的操作更加优雅。
优雅的体现如下:
//在出现无法定义的对象时此表达式的返回值
Object.defineProperty(obj, name, desc) // undefined
Reflect.defineProperty(obj, name, desc) // 则会返回false
上面的优点在于进行判断的时候新写法会直接返回布尔值
// 老写法
'assign' in Object // true
// 新写法
Reflect.has(Object, 'assign') // true
上面的写法的优点在于,新写法更符合语义。
var Obj = new Proxy(obj, {
get(target, name) {
console.log('get', target, name);
return Reflect.get(target, name);
},
deleteProperty(target, name) {
console.log('delete' + name);
return Reflect.deleteProperty(target, name);
},
has(target, name) {
console.log('has' + name);
return Reflect.has(target, name);
}
});
不管Proxy怎么修改默认行为,你总可以在Reflect上获取默认行为,这为代理操作简化了代码,降低了代码量,很多操作会更易读。
重点:
现阶段,某些方法同时在Object和Reflect对象上部署,未来的新方法将只部署在Reflect对象上。也就是说,从Reflect对象上可以拿到语言内部的方法。
Reflect.get方法查找目标对象上的name属性,如果找不到则返回undefined。
var myObject = {
foo: 1,
bar: 2,
get baz() {
return this.foo + this.bar;
},
};
var myReceiverObject = {
foo: 4,
bar: 4,
};
Reflect.get(myObject, 'baz', myReceiverObject) // 8
由上可以看出:当Reflect.get参数传入 receiver参数时,name中的读操作的this会指向receiver内部;
Reflect.set方法设置target对象的name属性等于value。
var myObject = {
foo: 4,
set bar(value) {
return this.foo = value;
},
};
var myReceiverObject = {
foo: 0,
};
Reflect.set(myObject, 'bar', 1, myReceiverObject);
myObject.foo // 4
myReceiverObject.foo // 1
由上可以看出:当Reflect.set参数传入 receiver参数时,name中的写操作的this会指向receiver内部;
var myObject = {
foo: 1,
};
// 旧写法
'foo' in myObject // true
// 新写法
Reflect.has(myObject, 'foo') // true
has方法用来检测对象内部是否含有name属性
const myObj = { foo: 'bar' };
// 旧写法
delete myObj.foo;
// 新写法
Reflect.deleteProperty(myObj, 'foo');
Reflect.deleteProperty用来删除对象的name属性
function Greeting(name) {
this.name = name;
}
// new 的写法
const instance = new Greeting('张三');
// Reflect.construct 的写法
const instance = Reflect.construct(Greeting, ['张三']);
Reflect.construct提供了一种不使用new,来调用构造函数的方法。
const myObj = new FancyThing();
// 旧写法
Object.getPrototypeOf(myObj) === FancyThing.prototype;
// 新写法
Reflect.getPrototypeOf(myObj) === FancyThing.prototype;
Reflect.getPrototypeOf()用来查找目标的原型
const myObj = {};
// 旧写法
Object.setPrototypeOf(myObj, Array.prototype);
// 新写法
Reflect.setPrototypeOf(myObj, Array.prototype);
myObj.length // 0
Reflect.setPrototypeOf方法用于设置目标对象的原型(prototype)。
const ages = [11, 33, 12, 54, 18, 96];
// 旧写法
const youngest = Math.min.apply(Math, ages);
const oldest = Math.max.apply(Math, ages);
const type = Object.prototype.toString.call(youngest);
// 新写法
const youngest = Reflect.apply(Math.min, Math, ages);
const oldest = Reflect.apply(Math.max, Math, ages);
const type = Reflect.apply(Object.prototype.toString, youngest, []);
Reflect.apply用于绑定this对象后执行给定函数。
function MyDate() {
/*…*/
}
// 旧写法
Object.defineProperty(MyDate, 'now', {
value: () => Date.now()
});
// 新写法
Reflect.defineProperty(MyDate, 'now', {
value: () => Date.now()
});
Reflect.defineProperty方法用来为对象定义属性。
var myObject = {};
Object.defineProperty(myObject, 'hidden', {
value: true,
enumerable: false,
});
// 旧写法
var theDescriptor = Object.getOwnPropertyDescriptor(myObject, 'hidden');
// 新写法
var theDescriptor = Reflect.getOwnPropertyDescriptor(myObject, 'hidden');
Reflect.getOwnPropertyDescriptor用于得到指定属性的描述对象
const myObject = {};
// 旧写法
Object.isExtensible(myObject) // true
// 新写法
Reflect.isExtensible(myObject) // true
Reflect.isExtensible表示当前对象是否可扩展。
var myObject = {};
// 旧写法
Object.preventExtensions(myObject) // Object {}
// 新写法
Reflect.preventExtensions(myObject) // true
Reflect.preventExtensions用于让一个对象变为不可扩展;不可扩展意味着你不能在对象中添加属性
var myObject = {
foo: 1,
bar: 2,
[Symbol.for('baz')]: 3,
[Symbol.for('bing')]: 4,
};
// 旧写法
Object.getOwnPropertyNames(myObject)
// ['foo', 'bar']
Object.getOwnPropertySymbols(myObject)
//[Symbol(baz), Symbol(bing)]
// 新写法
Reflect.ownKeys(myObject)
// ['foo', 'bar', Symbol(baz), Symbol(bing)]
Reflect.ownKeys方法用于返回对象的所有属性
Reflect会逐步代替object对象的绝大部分功能,未来也有可能会完全取代object。Reflect-yyds