Typescript装饰器构造函数覆盖包括其他参数

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Typescript装饰器构造函数覆盖包括其他参数相关的知识,希望对你有一定的参考价值。

根据typescript decorators documentation,替换构造函数的装饰器示例不会将任何参数传递给装饰器函数。我怎么能做到这一点?

这就是文档所说的

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;
  }
}

但我现在想传递像使用装饰器这样的参数,如下所示

@classDecorator({
  // some object properties fitting DecoratorData type
})

我只是尝试添加第二个数据参数

function classDecorator<T extends {new(...args:any[]): {}}>(constructor: T, data: DecoratorData)

但这只需要tslint 2参数,得到1.插入一个null占位符也不起作用。我还尝试使用constructor参数作为第二个可选参数。这导致签名失配错误。

答案

您需要使用装饰器生成器,这是一个返回装饰器函数的函数。生成器函数可以使用额外的参数,内部装饰器函数可以捕获这些参数并使用它们。

function classDecorator(data: DecoratorData) {
    return function <T extends { new(...args: any[]): {} }>(constructor: T) {
        return class extends constructor {
            newProperty = "new property";
            hello = "override";
            // use daat here 
        }
    }
}

@classDecorator({ data: "" })
class Greeter {
    property = "property";
    hello: string;
    constructor(m: string) {
        this.hello = m;
    }
}

以上是关于Typescript装饰器构造函数覆盖包括其他参数的主要内容,如果未能解决你的问题,请参考以下文章

typescript 装饰器

从0开始的TypeScriptの十二:装饰器

从0开始的TypeScriptの十二:装饰器

TypeScript 素描 - 装饰器

TypeScript基础入门之装饰器(三)

typeScript 装饰器