1

我正在尝试将一个巨大的客户端应用程序从 Angular 1.x 升级到 Angular 2,但我遇到了一个非常烦人的障碍。我用一个虚拟的轻量级项目(粘贴在下面的文件)重新创建了这个问题,但让我先解释一下这个问题。

基本上,当我将tsconfig.json模块指定为时commonjs,我在 chrome 开发控制台中收到以下错误:

app.module.ts:1Uncaught ReferenceError: 要求未定义

当我将模块切换到 时system,出现以下错误:

未捕获的 TypeError:无效的 System.register 调用。匿名 System.register 调用只能由 SystemJS.import 加载的模块进行,而不能通过脚本标签进行。

当我将模块切换到 时umd,一切正常。但鉴于角度本身建议使用commonjs,我担心这umd不是正确的答案。但是,如果我错了并且umd完全没问题,我很想听听一个很好的解释。

这是我重现我的问题的代码:

tsconfig.json:

{
  "compilerOptions": {
    "target": "es5",
    "module": "system",
    "moduleResolution": "node",
    "sourceMap": true,
    "emitDecoratorMetadata": true,
    "experimentalDecorators": true,
    "removeComments": false,
    "noImplicitAny": false
 }
 ,
"exclude": [
    "node_modules"
 ]
}

打字.json:

{
  "globalDependencies": {
  "angular": "registry:dt/angular#1.5.0+20160922195358",
  "core-js": "registry:dt/core-js#0.0.0+20160725163759",
  "jasmine": "registry:dt/jasmine#2.2.0+20160621224255",
  "jquery": "registry:dt/jquery#1.10.0+20160929162922",
  "node": "registry:dt/node#6.0.0+20160909174046"
  }
}

systemjs.config.js :

(function (global) {
   System.config({
    paths: {
        // paths serve as alias
        'npm:': 'node_modules/'
    },
    // map tells the System loader where to look for things
    map: {
        // our app is within the app folder
        app: 'app',
        // angular bundles
        '@angular/core': 'npm:@angular/core/bundles/core.umd.js',
        '@angular/common': 'npm:@angular/common/bundles/common.umd.js',
        '@angular/compiler': 'npm:@angular/compiler/bundles/compiler.umd.js',
        '@angular/platform-browser': 'npm:@angular/platform-browser/bundles/platform-browser.umd.js',
        '@angular/platform-browser-dynamic': 'npm:@angular/platform-browser-dynamic/bundles/platform-browser-dynamic.umd.js',
         '@angular/ ': 'npm:@angular/http/bundles/http.umd.js',
        '@angular/router': 'npm:@angular/router/bundles/router.umd.js',
        '@angular/forms': 'npm:@angular/forms/bundles/forms.umd.js',
        // other libraries
        'rxjs':                      'npm:rxjs',
        'angular-in-memory-web-api': 'npm:angular-in-memory-web-api',
    },
    // packages tells the System loader how to load when no filename and/or no extension
    packages: {
        app: {
            main: './main.js',
            defaultExtension: 'js'
        },
        rxjs: {
            defaultExtension: 'js'
        },
        'angular-in-memory-web-api': {
            main: './index.js',
            defaultExtension: 'js'
        }
    }
 });
})(this);

包.json:

{
 "name": "mattsApp",
 "version": "0.0.1",
 "dependencies": {
 "angular": "^1.5.8",
 "@angular/common": "~2.0.2",
 "@angular/compiler": "~2.0.2",
 "@angular/core": "~2.0.2",
 "@angular/forms": "~2.0.2",
 "@angular/http": "~2.0.2",
 "@angular/platform-browser": "~2.0.2",
 "@angular/platform-browser-dynamic": "~2.0.2",
 "@angular/router": "~3.0.2",
 "@angular/upgrade": "~2.0.2",
 "angular-in-memory-web-api": "~0.1.5",
 "bootstrap": "^3.3.7",
 "core-js": "^2.4.1",
 "reflect-metadata": "^0.1.8",
 "rxjs": "5.0.0-beta.12",
 "systemjs": "0.19.39",
 "zone.js": "^0.6.25"
},
"devDependencies": {
  "concurrently": "^3.0.0",
  "lite-server": "^2.2.2",
  "typescript": "^2.0.3",
  "typings":"^1.4.0"
 },
 "scripts": {
  "start": "tsc && concurrently \"tsc -w\" \"lite-server\" ",
  "lite": "lite-server",
  "postinstall": "typings install",
  "tsc": "tsc",
  "tsc:w": "tsc -w",
  "typings": "typings"
 }
}

应用程序.js:

angular.module('app', []);

app.module.ts :

import { NgModule }      from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { upgradeAdapter } from './upgrade_adapter';

@NgModule({
  imports:      [ BrowserModule ]
})
export class AppModule { }

upgradeAdapter.bootstrap(document.body, ['app'], {strictDi: true});

appCtrl.ts :

angular.module('app')
    .controller('appCtrl', ['$scope', function($scope) {
      $scope.hello = "howdy worldy";
    }]);

升级适配器.ts:

import { UpgradeAdapter } from '@angular/upgrade';
import {AppModule} from "./app.module";
export const upgradeAdapter = new UpgradeAdapter(AppModule);

我错过了什么?

4

2 回答 2

0

您需要使用非空参数实例化 UpgradeAdapter。这样,您需要传递一个 forwardRef 实例,如下所示:

const upgradeAdapter = new UpgradeAdapter(forwardRef(() => AppModule));

最后你需要导入 forwardRef

import {NgModule, forwardRef} from '@angular/core';
于 2016-10-12T16:41:51.977 回答
0

首先,感谢安德烈斯。我需要阅读一些有关 forwardRef 的信息以了解它的作用。但事实证明,在我的特殊情况下,答案是不同的。

我没有在这里发布我的 index.html(简单的疏忽),但问题是我没有使用 System.import('app') 加载我的模块。令人尴尬的错误,我不得不承认。所以答案是添加那行。

我应该注意到,这导致了我解决的另一个错误,但我会在这里指出,以防其他人有类似的问题。由于这是一个混合的 angular 1 和 2 应用程序,我有打字稿文件,这些文件有时被 angular 1 控制器/指令/等使用,也被 angular 2 组件使用。我已将这些打字稿文件更改为使用导出,因此我可以将它们导入到我的 Angular 2 组件中。这导致我还更改了 angular 1 文件中的 /// 以使用 import。不幸的是,这给了我一个“undefinedModule”错误。解决方案(在我的情况下)不是在 typescript 文件上使用 export ,除非它们仅与 angular 2 组件一起使用。意思是,在某些角度 2 组件中,我实际上使用的是 /// 而不是导入。

只是认为其他人可能会觉得这很有用。

于 2016-10-18T11:53:20.213 回答