-
Notifications
You must be signed in to change notification settings - Fork 0
/
Reflect.html
267 lines (253 loc) · 9.53 KB
/
Reflect.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/html">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
Reflect
为操作对象提供的新api,可以拿到语言内部的方法</br>
一. 设计目的:</br>
1.将Object对象的一些明显属于语言内部的方法(比如Object.defineProperty),方法哦reflect中,当前某些方法会在object和reflect中共同</br>
存在,后续新的方法都只会在reflect对象中</br>
2.修改object方法中的返回结果,让其更合理</br>
3.让object操作都变成函数行为,某些Object操作是命令式,比如name in obj和delete obj[name],而Reflect.has(obj, name)和Reflect.deleteProperty(obj, name)让它们变成了函数行为</br>
4.reflect对象的方法与proxy对象的方法一一对应,只要proxy对象的方法,就能在reflect对象上找到对应的方法。这就让proxy对象可以</br>
可以方面的调用对象的方法,完成默认的行为,作为修改行为的基础,不管proxy怎么修改默认行,你总可以在reflect上获取默认行为</br>
<script>
let obj1={}
let temp1=new Proxy(obj1,{
set:function (target,name,value,receiver) {
let success=Reflect.set(target,name,value,receiver);
if(success){
console.log(`property ${name} on ${target} set to ${value}`)
}
return success
}
})
temp1.a="a"//property a on [object Object] set to a
obj1.a="a"//没有调用set
</script>
二. 静态方法</br>
Reflect对象一共有 13 个静态方法。
</br>
Reflect.apply(target, thisArg, args)</br>
Reflect.construct(target, args)</br>
Reflect.get(target, name, receiver)</br>
Reflect.set(target, name, value, receiver)</br>
Reflect.defineProperty(target, name, desc)</br>
Reflect.deleteProperty(target, name)</br>
Reflect.has(target, name)</br>
Reflect.ownKeys(target)</br>
Reflect.isExtensible(target)</br>
Reflect.preventExtensions(target)</br>
Reflect.getOwnPropertyDescriptor(target, name)</br>
Reflect.getPrototypeOf(target)</br>
Reflect.setPrototypeOf(target, prototype)</br>
上面这些方法的作用,大部分与Object对象的同名方法的作用都是相同的,而且它与Proxy对象的方法是一一对应的。下面是对它们的解释。</br>
</body>
2.1</br>
Reflect.get(target, name, receiver)</br>
<script>
let myObject={
foo:1,
getFoo(){
return this.foo
},
get baz(){
return this.foo
}
}
let myReceiveObject={
foo:2
}
console.log(Reflect.get(myObject,'foo')) //1
console.log(Reflect.get(myObject,'foo',myReceiveObject))//1
console.log(Reflect.get(myObject,'getFoo',myReceiveObject))//ƒ getFoo(){return this.foo}
console.log(Reflect.get(myObject,'baz',myReceiveObject))//部署了读取函数(getter),则读取函数的this绑定receiver
</script>
2.2 Reflect.set(target, name, value, receiver)</br>
<script>
let myObject2={
foo:1,
set bar(value){
return this.foo=value
}
}
let myReceiveObject2={
foo:2
}
console.log("2.2 set :"+myObject2.foo)//
console.log( Reflect.set(myObject2,'bar',2))
console.log("2.2 Reflect set :"+myObject2.foo)//2.2 Reflect set :2
console.log("2.2 "+Reflect.set(myObject2,'bar',4,myReceiveObject2))//2.2 true
console.log("2.2_"+myObject2.foo)//2.2_2
console.log("2.2_"+myReceiveObject2.foo)//2.2_4
let p = {
a: 'a'
};
let handler = {
set(target, key, value, receiver) {
console.log('set');
Reflect.set(target, key, value, receiver)
//写receiver 就说明Reflect.set是调用obj里面的,就会触发obj defineProperty
// 如果不写的话就不会调用定义在 obj里面的
},
defineProperty(target, key, attribute) {//
console.log('defineProperty');
Reflect.defineProperty(target, key, attribute);
}
};
let obj = new Proxy(p, handler);
obj.a = 'A';
</script>
2.3 Reflect.has(obj, name)</br>
var myObject = {</br>
foo: 1,</br>
};</br>
// 旧写法</br>
'foo' in myObject // true</br>
// 新写法</br>
Reflect.has(myObject, 'foo') // true</br>
2.4 Reflect.deleteProperty(obj, name)</br>
该方法返回一个布尔值。如果删除成功,或者被删除的属性不存在,返回true;删除失败,被删除的属性依然存在,返回false。</br>
2.5 Reflect.construct(target, args)</br>
const instance5 = Reflect.construct(Greeting, ['张三','22']);</br>
<script>
function Greeting(name,age) {
this.name = name;
this.age = age;
}
// new 的写法
const instance = new Greeting('张三');
// Reflect.construct 的写法
const instance5 = Reflect.construct(Greeting, ['张三','22']);
</script>
2.6 Reflect.getPrototypeOf(obj)</br>
function FancyThing() {</br>
age=2</br>
}</br>
FancyThing.prototype.name="1"</br>
const myObj = new FancyThing();</br>
// 旧写法</br>
console.log(Object.getPrototypeOf(myObj)) ;//{name: "1", constructor: ƒ}</br>
<script>
function FancyThing() {age=2}
FancyThing.prototype.name="1"
const myObj = new FancyThing();
// 旧写法
console.log(Object.getPrototypeOf(myObj)) ;//{name: "1", constructor: ƒ}
// 新写法
console.log(Reflect.getPrototypeOf(myObj) === FancyThing.prototype)//true
</script>
2.7 Reflect.setPrototypeOf(obj, newProto) //返回boolean true为成功 </br>
obj 必须是对象 nll和undefied会报错
let myObj7={a:2}</br>
Object.setPrototypeOf(myObj7,Array.prototype)</br>
myObj7.pop()</br>
console.log(myObj7)//["1", a: 2]</br>
<script>
let myObj7={a:2}
Object.setPrototypeOf(myObj7,Array.prototype)
myObj7.pop()
console.log(myObj7)//["1", a: 2]
</script>
2.8 Reflect.apply(func, thisArg, args)方法等同于Function.prototype.apply.call(func, thisArg, args)</br>
//func 方法 thisArg this指针 args参数 可以为null</br>
一般来说,如果要绑定一个函数的this对象,可以这样写fn.apply(obj, args),但是如果函数定义了自己的apply方法,</br>
就只能写成Function.prototype.apply.call(fn, obj, args),采用Reflect对象可以简化这种操作。</br>
详解见下面demo</br>
<script>
//原始写法
let ages8=[11,33,12,54,18,96]
let obj8={
age:8
}
Math.min(ages8)
console.log(Math.min.apply(Math,ages8))//11 第一参数表示this的指向
console.log("demo8"+ Math.min.apply(null,ages8)) //11
console.log(Object.prototype.toString.apply(ages8))//[object Array]
console.log(Array.prototype.toString.apply(obj8))//[object Object]
// 1原始写法 更改this纸箱
function Animal(){
this.name = "Animal";
this.showName = function(){
// alert(this.name);
console.log(this.name)
}
}
function Cat(){
this.name = "Cat";
}
var animal = new Animal();
var cat = new Cat();
//通过call或apply方法,将原本属于Animal对象的showName()方法交给对象cat来使用了。
//输入结果为"Cat"
animal.showName.call(cat,",");//showName 借用到cat中 this指针借用到cat中 call 第二个参数可以是任意
animal.showName.apply(cat,[]);//apply第二个参数必须是数组 也可以是arguments
//新的写法
let temp9= Reflect.apply(Math.min,Math,ages8)
console.log("demo8"+Reflect.apply(Math.min,Math,ages8)) //
console.log("demo8"+Reflect.apply(Math.min,null,ages8))
const type = Reflect.apply(Object.prototype.toString, temp9, []);//[object Number]
console.log(type)
</script>
2.7 Reflect.defineProperty(target, propertyKey, attributes)</br>
target 对象 propertyKey 属性名 { value: 'xx'}</br>
<script>
MyDate7={}
//旧写法
// Reflect.defineProperty(MyDate7, 'now',{value:Date.now()})
//新写法
Reflect.defineProperty(MyDate7, 'now', {
value: () => Date.now()
});
console.log("demo7"+ MyDate7.now)
</script>
2.8 Reflect.getOwnPropertyDescriptor(target, propertyKey) </br>
<script>
var myObject8 = {};
Object.defineProperty(myObject8, 'hidden', {
value: true,
enumerable: false,
});
// 旧写法
var theDescriptor = Object.getOwnPropertyDescriptor(myObject8, 'hidden');
// 新写法
var theDescriptor = Reflect.getOwnPropertyDescriptor(myObject8, 'hidden');
</script>
2.9 Reflect.isExtensible (target) </br>
target 必须是对象 1 旧语法不会报错 新语法会报错</br>
Object.isExtensible(myObject) // true</br>
// 新写法
Reflect.isExtensible(myObject) // true</br>
2.10 Reflect.preventExtensions(target)</br>
用于让一个对象变为不可扩展。它返回一个布尔值,表示是否操作成功。</br>
新语法必须是对象 同上
2.11 Reflect.ownKeys (target)。</br>
方法用于返回对象的所有属性,基本等同于Object.getOwnPropertyNames与Object.getOwnPropertySymbols之和。。</br>
3.0 实例:使用 Proxy 实现观察者模式。</br>
const queuedObservers = new Set();。</br>
const observe = fn => queuedObservers.add(fn);。</br>
const observable = obj => new Proxy(obj, {set});。</br>
。</br>
function set(target, key, value, receiver) {。</br>
const result = Reflect.set(target, key, value, receiver);。</br>
queuedObservers.forEach(observer => observer());。</br>
return result;。</br>
}。</br>
<script>
//let person30=new {name :20,age:10}
//let person30_1= observable({name :20,age:10})
// const person30_1 = observable({
// name: '张三',
// age: 20
// });
//
// function print() {
//// console.log("30"+this.person30_1.name,this.person30_1.age)
// console.log("---------")
// }
// observe(print)
</script>
</html>