最佳答案
我是打字新手,我有两门课,在家长课上我有:
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 返回的函数有调用签名吗?我想我误解了函数类型的一些重要问题,但我不知道它是什么。
谢谢!