我正在生成https://editor.swagger.io/ Codegen代理。 Angular 10中出现以下错误。如何解决?
通用类型'ModuleWithProviders'需要1个类型参数。
export class ApiModule {
public static forRoot(configurationFactory: () => Configuration): ModuleWithProviders {
return {
ngModule: ApiModule,
providers: [ { provide: Configuration, useFactory: configurationFactory } ]
};
}
constructor( @Optional() @SkipSelf() parentModule: ApiModule,
@Optional() http: HttpClient) {
if (parentModule) {
throw new Error('ApiModule is already loaded. Import in your base AppModule only.');
}
if (!http) {
throw new Error('You need to import the HttpClientModule in your AppModule! \n' +
'See also https://github.com/angular/angular/issues/20575');
}
}
}
答案 0 :(得分:2)
此错误告诉您,ModuleWithProviders
类具有1个通用参数。因此您可以像ModuleWithProviders<T>
那样使用它,其中T是一种类型。
编辑:
该类的定义如下:
interface ModuleWithProviders<T> {
ngModule: Type<T>
providers?: Provider[]
}
。
export class ApiModule {
public static forRoot(configurationFactory: () => Configuration) : ModuleWithProviders<ApiModule> {
return {
ngModule: ApiModule,
providers: [ { provide: Configuration, useFactory: configurationFactory } ]
};
}
查看资源:
答案 1 :(得分:2)
我们偶然发现了同一问题。幸运的是,您可以使用-t
开关向swagger-codegen-cli提供自定义* .mustache模板(请参见the swagger doc)。
我们改编的api.module.mustache看起来像这样:
import { NgModule, ModuleWithProviders, SkipSelf, Optional } from '@angular/core';
import { Configuration } from './configuration';
{{#useHttpClient}}import { HttpClient } from '@angular/common/http';{{/useHttpClient}}
{{^useHttpClient}}import { Http } from '@angular/http';{{/useHttpClient}}
{{#apiInfo}}
{{#apis}}
import { {{classname}} } from './{{importPath}}';
{{/apis}}
{{/apiInfo}}
@NgModule({
imports: [],
declarations: [],
exports: [],
providers: [
{{#apiInfo}}{{#apis}}{{classname}}{{#hasMore}},
{{/hasMore}}{{/apis}}{{/apiInfo}} ]
})
export class ApiModule {
public static forRoot(configurationFactory: () => Configuration): ModuleWithProviders<ApiModule> {
return {
ngModule: ApiModule,
providers: [ { provide: Configuration, useFactory: configurationFactory } ]
};
}
constructor( @Optional() @SkipSelf() parentModule: ApiModule,
@Optional() http: {{#useHttpClient}}HttpClient{{/useHttpClient}}{{^useHttpClient}}Http{{/useHttpClient}}) {
if (parentModule) {
throw new Error('ApiModule is already loaded. Import in your base AppModule only.');
}
if (!http) {
throw new Error('You need to import the {{#useHttpClient}}HttpClientModule{{/useHttpClient}}{{^useHttpClient}}HttpModule{{/useHttpClient}} in your AppModule! \n' +
'See also https://github.com/angular/angular/issues/20575');
}
}
}
唯一需要做的更改是将ModuleWithProviders
替换为ModuleWithProviders<ApiModule>
。
之后,生成的api.module.ts将与Angular 10一起使用。
答案 2 :(得分:1)
io.swagger.swagger-codegen
自版本 2.4.17 起完全支持 Angular 10。您可以详细了解此 pull request 中提供的修复。
正如 djf 提到的,在调用 --additional-properties ngVersion=10
时使用参数 generate
告诉 io.swagger.swagger-codegen
使用 Angular 10。