class A {
constructor() {
this.pc = {};
this.pc.name = 123;
setTimeout(() => {
console.log(this.pc);//为什么这里不能触发 get 如何触发
}, 1000)
}
}
A = new Proxy(A, {
get: (target, prop, recevier) => {
console.log(target[prop]);//
return target[prop];
},
})
new A();
其实我的需求是
在多个class类里面 我用到了同一个 pc对象
但是有很多行代码 我都判断了 if(!this.pc){return onerror()}
我想这样做一个拦截判断 如果没有 this.pc 做对应的逻辑
对代码进行更改后 如何做到 在A B类中同时能拦截
class A {
constructor() {
this.pc = {};
this.pc.name = 123;
setTimeout(() => {
this.pc
}, 1000)
let obj = new Proxy(this, {
get: (target, prop, recevier) => {
console.log(target[prop]); // 如何做到 A B同时能拦截
return target[prop];
},
})
return obj
}
}
class B extends A {
constructor() {
super()
setTimeout(() => {
this.pc
}, 3000)
}
}
new B();
Proxy
是类,new Proxy()
之后获得实例,实例不能再new
一次。Proxy
会代理对 对象 的访问,所以你只能拦截 对象(也就是实例)的get
,而不是类的get
,所以你只能new Proxy(实例)
,或者new Proxy(new A())
class
声明其实是原型链的语法糖,它的使用也跟以前的new func()
很接近。class
声明的类必须有constructor
作为构造函数,这个构造函数不仅包含实例的初始化,还可以return
一个值,如果这个值是一个对象的话,这个对象会代替实例返回给new
语句。所以,如果你想获得一个类的实例的代理,可以这样做: