Typescript:error TS2377:派生 类 的构造函数必须包含 'super' 调用
Typescript:error TS2377: Constructors for derived classes must contain a 'super' call
我正在尝试实现这个 Stackblitz example of angular-upload-file-with-progress-bar 但是在我的代码中
export class UploadDocumentTemplateComponent extends FieldType {}
我有这条线,因为它我收到了这个错误
错误 TS2377:派生 类 的构造函数必须包含 'super' 调用。
如何解决这个问题?
就在你需要的构造函数中
constructor()
{
super()
}
我正在尝试实现这个 Stackblitz example of angular-upload-file-with-progress-bar 但是在我的代码中
export class UploadDocumentTemplateComponent extends FieldType {}
我有这条线,因为它我收到了这个错误
错误 TS2377:派生 类 的构造函数必须包含 'super' 调用。
如何解决这个问题?
就在你需要的构造函数中
constructor()
{
super()
}