
永久会员
 
- 威望
- 1354
- 贡献
- 1160
- 热心值
- 0
- 金币
- 92
- 注册时间
- 2021-1-8
|
class User {
constructor(id) {
this.id_ = id;
}
}
const proxy = new Proxy(User, {
construct(target, argumentsList, newTarget) {
if (argumentsList[0] === undefined) {
throw 'User cannot be instantiated without id';
} else {
return Reflect.construct(...arguments);
}
}
});
new proxy(1);
console.log('------------------------------')
new proxy();
// Uncaught User cannot be instantiated without id |
|