gpt4 book ai didi

javascript - typescript 装饰类添加新方法

转载 作者:搜寻专家 更新时间:2023-10-30 21:52:38 24 4
gpt4 key购买 nike

我想给装饰类添加一个新方法。一切正常,但编译器提示该方法不存在,我如何满足编译器?

export function decorate( constructor : Function ) {

constructor.prototype.someMethod = function () {

}

}

@decorate
class Test {
constructor() {
//Property 'someMethod' does not exist on type 'Test'.
this.someMethod();
}
}

最佳答案

你可以使用:

(<any>this).someMethod();

或:

this['someMethod']();

你不能使用接口(interface)来检查 this 是否包含方法 someMethod() 因为你实际上并没有实现接口(interface)所以我认为这两个是唯一的选项...

关于javascript - typescript 装饰类添加新方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40449338/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com