因此,我正在尝试建立对 Typescript 装饰器的理解,并且我一直停留在给出的关于类装饰器的示例上。给出的示例展示了如何通过 function(){} 形成类装饰器。
function classDecorator<T extends {new(...args:any[]):{}}>(constructor:T){
return class extends constructor {
newProperty = "new property";
hello = "override";
}
}
@classDecorator
class Greeter {
property = "property";
hello: string;
constructor(m: string) {
this.hello = m;
}
}
console.log(new Greeter("world"));
是什么:
return class extends constructor {
newProperty = "new property";
hello = "override";
}
函数如何返回扩展参数(称为“构造”)的“类”关键字?我感到很困惑。
这是原始来源的链接(只需滚动到类装饰器的中间部分):https ://www.typescriptlang.org/docs/handbook/decorators.html
感谢任何帮助!