【问题标题】:Angular 9 mat-progress-buttons error: ERROR in Failed to compile entry-point mat-progress-buttons (es2015 as esm2015) due to compilation errorsAngular 9 mat-progress-buttons 错误:由于编译错误,无法编译入口点 mat-progress-buttons(es2015 为 esm2015)中的错误
【发布时间】:2020-06-11 01:32:35
【问题描述】:

从 Angular 8 更新到 Angular 9 后,下面给出的 mat-progress-button 出现错误。 它在 Angular 8 上运行良好。 MatProgressButton 与 Angular 9 不兼容吗?

node_modules/mat-progress-buttons/esm2015/mat-progress-buttons.js:181:26 - error NG1010: Value at position 1 in the NgModule.imports of MatProgressButtonsModule is not a reference: [object Object]

导入看起来像: import { MatProgressButtonsModule } from 'mat-progress-buttons';

我的 package.json 看起来像这样:

  "dependencies": {
    "@angular/animations": "^9.0.2",
    "@angular/cdk": "^9.1.0",
    "@angular/common": "~9.0.2",
    "@angular/compiler": "~9.0.2",
    "@angular/core": "~9.0.2",
    "@angular/forms": "~9.0.2",
    "@angular/material": "^9.1.0",
    ...
    "@angular/router": "~9.0.2",
    "core-js": "^2.5.4",
    "mat-file-upload": "^1.3.2",
    "mat-progress-buttons": "^8.0.7",
    "rxjs": "~6.5.4",
    "tslib": "^1.10.0",
    "zone.js": "~0.10.2"
  },
  "devDependencies": {
    "@angular-devkit/build-angular": "~0.900.3",
    "@angular/cli": "~9.0.3",
    "@angular/compiler-cli": "~9.0.2",
    "@angular/language-service": "~9.0.2",
   ...
    "typescript": "^3.7.5"
  }
}

【问题讨论】:

  • 我有同样的问题(这里是我的SO question),它似乎与 Angular 9 如何处理深度导入有关,但我找不到任何解决方案。

标签: angular angular-material angular9


【解决方案1】:

我有同样的问题。似乎已安装模块的版本存在某种错误。我通过删除解决了它 node_module 文件夹并使用 npm install 重新启动它。

【讨论】:

    【解决方案2】:

    删除了 node_modules 文件夹、dist 文件夹和 package-lock.json 文件

    npm cache clean --force
    npm cache verify
    npm i
    

    然后它对我有用!

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多