设置混合 AngularJS / Angular 应用程序时出现 "Can't resolve all parameters" 错误

Getting a "Can't resolve all parameters" error when setting up a hybrid AngularJS / Angular app

我想升级我的传统 Angular JS 应用程序,我一直在按照 angular.io 上的文档设置 混合 应用程序。

现在我在 app.ts 中的 bootstrapping 过程看起来像:

import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
import { AppModule } from "./app.module";
platformBrowserDynamic().bootstrapModule(AppModule);

我的新 app.module.ts 看起来像:

import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { UpgradeModule } from '@angular/upgrade/static';

@NgModule({
  imports: [
  BrowserModule,
  UpgradeModule
]})
export class AppModule {
  constructor(private upgrade: UpgradeModule) { }
  ngDoBootstrap() {
    this.upgrade.bootstrap(document.body, ['myApp'], { strictDi: true });
  }
}

但是,当我 运行 应用程序时,出现以下错误:

compiler.es5.js:1503 Uncaught Error: Can't resolve all parameters for AppModule: (?).
at syntaxError (compiler.es5.js:1503)
at CompileMetadataResolver._getDependenciesMetadata (compiler.es5.js:14780)
at CompileMetadataResolver._getTypeMetadata (compiler.es5.js:14648)
at CompileMetadataResolver.getNgModuleMetadata (compiler.es5.js:14489)
at JitCompiler._loadModules (compiler.es5.js:25561)
at JitCompiler._compileModuleAndComponents (compiler.es5.js:25520)
at JitCompiler.compileModuleAsync (compiler.es5.js:25482)
at PlatformRef_._bootstrapModuleWithZone (core.es5.js:4786)
at PlatformRef_.bootstrapModule (core.es5.js:4772)
at Object.map../af (app.ts:487)

在我看来,Angular 无法找到 UpgradeModule 来解决 AppModule 中的依赖关系。

我的问题是: 为了解决这个问题,我的 bootstrap 过程中是否遗漏了什么?

(注意:它可能相关也可能不相关,但我使用 webpack 作为我的模块加载器。)

我终于成功了,并创建了一个示例 GitHub 存储库,展示了使用 webpack 捆绑混合应用程序的基本解决方案:

https://github.com/robinho81/angularjs-webpack-upgrade

我刚刚遇到了同样的问题,经过很长时间的尝试(并查看了您的存储库),我认为这是因为我的 emitDecoratorMetadata 没有在 tsconfig 中设置

接受的答案对我不起作用,因为我已经设置好了。我个人必须将此映射添加到我的 webpack 别名

    {
      resolve: {
        alias: {
          "@angular/upgrade/static": "@angular/upgrade/bundles/upgrade-static.umd.js"
        }
      }
    }

对我来说,错误是由于 angular 不支持 typescript v3。 angular 使用的装饰器在 typescript 中仍处于试验阶段,它似乎被版本改变了...

官方指南也没有提到两个需要的包: 反映元数据,zone.js 但是下面的教程提到了它: https://scotch.io/tutorials/get-started-with-ngupgrade-going-from-angularjs-to-angular

即使 emitDecoratorMetadata 标志设置为 true,我也遇到了这个问题。感谢 ,我终于发现我还必须导入 reflect-metadata。我在这里回答是因为它是一个更高的搜索结果,也许它会让其他人将来更容易解决!