获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
什么时候会支持呢?
开发者工具中的typescript装饰器特性支持是不是有问题?[图片] [图片] 我已经定义了 "experimentalDecorators": true, function f() { console.log("f(): evaluated"); return function (target, propertyKey: string, descriptor: PropertyDescriptor) { console.log("f(): called"); } } function g() { console.log("g(): evaluated"); return function (target, propertyKey: string, descriptor: PropertyDescriptor) { console.log("g(): called"); } } class C { @f() @g() method() {} } let a = new C() a.method()
2021-12-01