无法将抽象构造函数类型分配给非抽象构造函数类型
Cannot assign an abstract constructor type to a non-abstract constructor type
我试图在 angular 中创建一个抽象组件,但出现以下错误:
Error: src/app/app.module.ts:191:5 - error TS2322: Type 'typeof AbstractFormComponent' is not assignable to type 'any[] | Type<any>'.
Type 'typeof AbstractFormComponent' is not assignable to type 'Type<any>'.
Cannot assign an abstract constructor type to a non-abstract constructor type.
191 AbstractFormComponent
~~~~~~~~~~~~~~~~~~~~~
这是我的抽象组件:
@Component({
selector: 'app-abstract-form',
templateUrl: './abstract-form.component.html',
styleUrls: ['./abstract-form.component.scss']
})
export abstract class AbstractFormComponent implements OnInit, AfterViewInit {
protected constructor(protected formService: FormService) {
}
protected abstract getForms(): AbstractControl[];
ngOnInit(): void {
}
ngAfterViewInit(): void {
this.getForms().forEach(f => this.formService.addForm(f));
}
}
似乎 Angular 的构造函数有问题,但我需要服务的构造函数,所以我无法删除它。
有什么方法可以将抽象 类 与 constructor/injecting 服务一起使用?
解决方案只是不将抽象组件添加到 app.modules。我仍然可以将它用作抽象组件,并且不会出现任何错误。
这看起来像是一个已知的打字稿问题。 https://github.com/microsoft/tsyringe/issues/20.
您可以使用 @ts-ignore 跳过构建时类型检查。
我试图在 angular 中创建一个抽象组件,但出现以下错误:
Error: src/app/app.module.ts:191:5 - error TS2322: Type 'typeof AbstractFormComponent' is not assignable to type 'any[] | Type<any>'.
Type 'typeof AbstractFormComponent' is not assignable to type 'Type<any>'.
Cannot assign an abstract constructor type to a non-abstract constructor type.
191 AbstractFormComponent
~~~~~~~~~~~~~~~~~~~~~
这是我的抽象组件:
@Component({
selector: 'app-abstract-form',
templateUrl: './abstract-form.component.html',
styleUrls: ['./abstract-form.component.scss']
})
export abstract class AbstractFormComponent implements OnInit, AfterViewInit {
protected constructor(protected formService: FormService) {
}
protected abstract getForms(): AbstractControl[];
ngOnInit(): void {
}
ngAfterViewInit(): void {
this.getForms().forEach(f => this.formService.addForm(f));
}
}
似乎 Angular 的构造函数有问题,但我需要服务的构造函数,所以我无法删除它。 有什么方法可以将抽象 类 与 constructor/injecting 服务一起使用?
解决方案只是不将抽象组件添加到 app.modules。我仍然可以将它用作抽象组件,并且不会出现任何错误。
这看起来像是一个已知的打字稿问题。 https://github.com/microsoft/tsyringe/issues/20.
您可以使用 @ts-ignore 跳过构建时类型检查。