angular2:如何解决错误:(SystemJS)模块没有定义?

时间:2016-12-28 05:52:09

标签: angular typescript

我是angular2的新学习者。我们知道在angular2中,有一种方法可以通过相对路径引用文件,通过在组件元数据中定义moduleId : module.id。但是我试图通过这种方式并始终得到以下错误:

Error: (SystemJS) module is not defined 

我在这里建了一个傻瓜:a simple angular2 app

文件结构如下,非常简单:

enter image description here

每个部分的内容如下:

config.js:

System.config({
    //use typescript for compilation
    transpiler: 'typescript',
    //typescript compiler options
    typescriptOptions: {
        emitDecoratorMetadata: true,
        module: "commonjs"
    },
    meta: {
        'typescript': {
            "exports": "ts"
        }
    },
    paths: {
        'npm:': 'https://unpkg.com/'
    },
    //map tells the System loader where to look for things
    map: {

        'app': './app',

        '@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/http': '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',

        '@angular/core/testing': 'npm:@angular/core/bundles/core-testing.umd.js',
        '@angular/common/testing': 'npm:@angular/common/bundles/common-testing.umd.js',
        '@angular/compiler/testing': 'npm:@angular/compiler/bundles/compiler-testing.umd.js',
        '@angular/platform-browser/testing': 'npm:@angular/platform-browser/bundles/platform-browser-testing.umd.js',
        '@angular/platform-browser-dynamic/testing': 'npm:@angular/platform-browser-dynamic/bundles/platform-browser-dynamic-testing.umd.js',
        '@angular/http/testing': 'npm:@angular/http/bundles/http-testing.umd.js',
        '@angular/router/testing': 'npm:@angular/router/bundles/router-testing.umd.js',

        'rxjs': 'npm:rxjs',
        'typescript': 'npm:typescript/lib/typescript.js'
    },
    //packages defines our app package
    packages: {
        app: {
            main: 'main.ts',
            defaultExtension: 'ts'
        },

        rxjs: {
            defaultExtension: 'js'
        }
    }
});

app.component.ts:

import { Component } from '@angular/core';

@Component({
    moduleId: module.id,
    selector: 'app',
    templateUrl: 'app.component.html'
})
export class AppComponent {

}

对于其他文件,您可以参考plunker。我在typescriptOptions中设置了module: "commonjs"。我的代码有什么问题吗?

3 个答案:

答案 0 :(得分:2)

对于systemjs,我应该使用__moduleName代替module.id

答案 1 :(得分:1)

这对我有用Angular@4.x.x,Typescript @ 2.x.x,SystemJS @ 0.20.12

declare var __moduleName: string;
import { Component } from '@angular/core';

@Component({
    moduleId: __moduleName,
    selector: 'app',
    templateUrl: 'app.component.html'
})
export class AppComponent {

}

答案 2 :(得分:0)

如果要使用module.id,可以将@ types / node包安装为dev依赖项。

这会将模块识别为类型。

https://www.npmjs.com/package/@types/node