typescript 角度 6:错误 TS2315:类型“ModuleWithProviders”不是通用的

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/51763710/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-10-21 05:34:09  来源:igfitidea点击:

ANGULAR 6: error TS2315: Type 'ModuleWithProviders' is not generic

angulartypescriptangular-reactive-forms

提问by Teskin

Hello I am experience a issue that I cannot relate to anything.

您好,我遇到了一个与任何事情都不相关的问题。

I show some of my code hoping it can be of any use.

我展示了我的一些代码,希望它可以有任何用处。

Consider that the issue appeared once I started on creating a Reactive Form.

考虑到我开始创建反应式表单后出现的问题。

First of all, here it is my package.json:

首先,这是我的 package.json:

{
  "name": "name",
  "version": "0.0.0",
  "scripts": {
    "ng": "ng",
    "start": "ng serve",
    "build": "ng build",
    "test": "ng test",
    "lint": "ng lint",
    "e2e": "ng e2e"
  },
  "private": true,
  "dependencies": {
    "@angular/animations": "^6.0.3",
    "@angular/common": "^6.0.3",
    "@angular/compiler": "^6.0.3",
    "@angular/core": "^6.0.3",
    "@angular/forms": "^6.1.2",
    "@angular/http": "^6.0.3",
    "@angular/platform-browser": "^6.0.3",
    "@angular/platform-browser-dynamic": "^6.0.3",
    "@angular/router": "^6.0.3",
    "@ng-bootstrap/ng-bootstrap": "^2.2.0",
    "core-js": "^2.5.4",
    "rxjs": "^6.0.0",
    "zone.js": "^0.8.26"
  },
  "devDependencies": {
    "@angular/compiler-cli": "^6.0.3",
    "@angular-devkit/build-angular": "~0.6.8",
    "typescript": "~2.7.2",
    "@angular/cli": "~6.0.8",
    "@angular/language-service": "^6.0.3",
    "@types/jasmine": "~2.8.6",
    "@types/jasminewd2": "~2.0.3",
    "@types/node": "~8.9.4",
    "codelyzer": "~4.2.1",
    "jasmine-core": "~2.99.1",
    "jasmine-spec-reporter": "~4.2.1",
    "karma": "~1.7.1",
    "karma-chrome-launcher": "~2.2.0",
    "karma-coverage-istanbul-reporter": "~2.0.0",
    "karma-jasmine": "~1.1.1",
    "karma-jasmine-html-reporter": "^0.2.2",
    "protractor": "~5.3.0",
    "ts-node": "~5.0.1",
    "tslint": "~5.9.1"
  }
}

And here my App module:

这里是我的 App 模块:

import {BrowserModule} from '@angular/platform-browser';
import {ModuleWithProviders, NgModule} from '@angular/core';
import {AppComponent} from './app.component';
import {SideBarComponent} from './components/side-bar/side-bar.component';
import {HttpRequestProcessComponent} from './components/http-request-process/http-request-process.component';
import {ProcessFormComponent} from './components/form/process-form/process-form.component';
import {HttpResponseComponent} from './components/http-response/http-response.component';
import {FormsModule, ReactiveFormsModule} from '@angular/forms';
import {HttpClientModule} from '@angular/common/http';
import {RouterModule, Routes} from '@angular/router';
import {RuleFormComponent} from './components/form/rule-form/rule-form.component';
import {ProcessComponent} from './components/process/process.component';
import {TestCasesComponent} from './components/test-cases/test-cases.component';
import {FilterPipe, SortByPipe} from './pipes/filter.pipe';
import {SalableProductFormComponent} from './components/form/salable-product-form/salable-product-form.component';
import {CheckOrderFormComponent} from './components/form/check-order-form/check-order-form.component';
import {ModalComponent} from './components/modal/modal.component';
import {HttpProcessiComponent} from "./components/http-textarea/http-processi/http-processi.component";
import {HttpRegoleComponent} from "./components/http-textarea/http-regole/http-regole.component";
import {HttpProdottiVendibiliComponent} from "./components/http-textarea/http-prodotti-vendibili/http-prodotti-vendibili.component";

const appRoutes: Routes = [
  {
    path: '',
    redirectTo: 'processi',
    pathMatch: 'full'
  },
  {
    path: 'processi',
    component: ProcessComponent,
    children: [
      {
        path: '',
        component: ProcessFormComponent,
        outlet: 'form'
      }
    ]
  },
  {
    path: 'regole',
    component: ProcessComponent,
    children: [
      {
        path: '',
        component: RuleFormComponent,
        outlet: 'form'
      }
    ]
  },
  {
    path: 'verifica-ordini',
    component: ProcessComponent,
    children: [
      {
        path: '',
        component: CheckOrderFormComponent,
        outlet: 'form'
      }
    ]
  },
  {
    path: 'prodotti-vendibili',
    component: ProcessComponent,
    children: [
      {
        path: '',
        component: SalableProductFormComponent,
        outlet: 'form'
      }
    ]
  }
];

const alternativeRoute = [
  {
    path: '',
    redirectTo: 'processi',
    pathMatch: 'full'
  },
  {
    path: 'processi',
    component: ProcessFormComponent
  },
  {
    path: 'regole',
    component: RuleFormComponent
  },
  {
    path: 'verifica-ordini',
    component: CheckOrderFormComponent,
  },
  {
    path: 'prodotti-vendibili',
    component: SalableProductFormComponent,
  }
];

export const routing: ModuleWithProviders = RouterModule.forRoot(appRoutes);


@NgModule({
  declarations: [
    AppComponent,
    SideBarComponent,
    HttpRequestProcessComponent,
    ProcessFormComponent,
    HttpResponseComponent,
    RuleFormComponent,
    ProcessComponent,
    TestCasesComponent,
    FilterPipe,
    SortByPipe,
    SalableProductFormComponent,
    CheckOrderFormComponent,
    // ProductFormElementComponent,
    ModalComponent,
    HttpProcessiComponent,
    HttpRegoleComponent,
    HttpProdottiVendibiliComponent
  ],
  imports: [
    BrowserModule,
    HttpClientModule,
    RouterModule.forRoot(appRoutes,
      {enableTracing: false}),
    FormsModule,
    ReactiveFormsModule
  ],
  providers: [],
  bootstrap: [AppComponent]
})

export class AppModule {
}

The exact error is:

确切的错误是:

ERROR in node_modules/@angular/forms/src/form_providers.d.ts(22,9): error TS2315: Type 'ModuleWithProviders' is not generic.

node_modules/@angular/forms/src/form_providers.d.ts(22,9) 中的错误:错误 TS2315:“ModuleWithProviders”类型不是通用的。

It seems not related to my code directly, but instead something on a deeper configuration level of Angular.

它似乎与我的代码没有直接关系,而是与 Angular 更深层次的配置相关。

In any of my components show any error.

在我的任何组件中显示任何错误。

Please adivice.

请指教。

EDITI modified the route configuration like this:

编辑我修改了这样的路由配置:

const routing: ModuleWithProviders = RouterModule.forRoot(appRoutes, enableTracing: false});

and I added routing in imports. The issue still remains.

我在import 中添加了路由。问题仍然存在。

回答by Richard Matsen

The forms module release is mismatched with the core,

表单模块发布与核心不匹配,

"dependencies": {
  ...
  "@angular/core": "^6.0.3",
  "@angular/forms": "^6.1.2",

To correct it, re-install forms with yarn add @angular/[email protected]or npm install @angular/[email protected](whichever installer you started with).
There may be other dependencies that need adjusting after that, the installer should tell you.

要更正它,请使用yarn add @angular/[email protected]npm install @angular/[email protected](无论您开始使用哪个安装程序)重新安装表单。
之后可能还有其他依赖项需要调整,安装程序会告诉您。

If you diff the 6.0.3 and 6.1.2 sources for form_providers.tson github, this is the change that causes the error:

如果您在 github 上比较form_providers.ts的 6.0.3 和 6.1.2 源,这是导致错误的更改:

6.0.3

6.0.3

import {ModuleWithProviders, NgModule} from '@angular/core';
...
export class ReactiveFormsModule {
  static withConfig(opts: {
    /** @deprecated as of v6 */ warnOnNgModelWithFormControl: 'never' | 'once' | 'always'
  }): ModuleWithProviders {

6.1.2

6.1.2

import {ModuleWithProviders, NgModule} from '@angular/core';
...
export class ReactiveFormsModule {
  static withConfig(opts: {
    /** @deprecated as of v6 */ warnOnNgModelWithFormControl: 'never' | 'once' | 'always'
  }): ModuleWithProviders<ReactiveFormsModule> {