错误:无法调用其类型缺少调用签名的表达式
2022-08-30 04:10:58
我对typescript是全新的,我有两个类。在父类中,我有:
abstract class Component {
public deps: any = {};
public props: any = {};
public setProp(prop: string): any {
return <T>(val: T): T => {
this.props[prop] = val;
return val;
};
}
}
在儿童班上,我有:
class Post extends Component {
public toggleBody: string;
constructor() {
this.toggleBody = this.setProp('showFullBody');
}
public showMore(): boolean {
return this.toggleBody(true);
}
public showLess(): boolean {
return this.toggleBody(false);
}
}
showMore 和 ShowLess 都给我一个错误,“无法调用类型缺少调用签名的表达式。
但是 setProp 返回的函数确实有一个调用签名,我想呢?我认为我误解了函数类型的重要内容,但我不知道它是什么。
谢谢!