Angular 2 需要 html.js 模板文件

Angular 2 requiring html.js file for template

我的 angular2 应用程序遇到了很多问题。

我有一个非常简单的 mvc 应用程序(我正在使用 asp.net)。

但是,我得到了一个 当我尝试在内部测试组件中使用模板时,我的应用无法加载并显示以下消息。

内部组件代码`从'@angular/core'导入{组件};

@Component({
    selector: 'test',
   template: require('./innerhome.component.html')
})
export class InnerTestComponent {
    name = '';
}
`

消息是Failed to load resource: the server responded with a status of 404 (Not Found) localhost/:20 Error: (SystemJS) XHR error (404 Not Found) loading http://localhost:2802/app/components/content/innerhome.component.html.js Error: XHR error (404 Not Found) loading http://localhost:2802/app/components/content/innerhome.component.html.js at XMLHttpRequest.wrapFn [as _onreadystatechange] (http://localhost:2802/node_modules/zone.js/dist/zone.js:698:29) at ZoneDelegate.invokeTask (http://localhost:2802/node_modules/zone.js/dist/zone.js:265:35) at Zone.runTask (http://localhost:2802/node_modules/zone.js/dist/zone.js:154:47) at XMLHttpRequest.ZoneTask.invoke (http://localhost:2802/node_modules/zone.js/dist/zone.js:335:33) Error loading http://localhost:2802/app/components/content/innerhome.component.html.js as "./innerhome.component.html" from http://localhost:2802/app/components/content/innertest.component.js at XMLHttpRequest.wrapFn [as _onreadystatechange] (http://localhost:2802/node_modules/zone.js/dist/zone.js:698:29) at ZoneDelegate.invokeTask (http://localhost:2802/node_modules/zone.js/dist/zone.js:265:35) at Zone.runTask (http://localhost:2802/node_modules/zone.js/dist/zone.js:154:47) at XMLHttpRequest.ZoneTask.invoke (http://localhost:2802/node_modules/zone.js/dist/zone.js:335:33) Error loading http://localhost:2802/app/components/content/innerhome.component.html.js as "./innerhome.component.html" from http://localhost:2802/app/components/content/innertest.component.js

我的 systemjs.config.js 文件是

(function (global) {
System.config({
    paths: {
        // псевдоним для пути к модулям
        'npm:': 'node_modules/'
    },
    // указываем загрузчику System, где искать модули
    map: {
        // наше приложение будет находиться в папке app
        app: 'app',
        // пакеты angular
        '@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/upgrade': 'npm:@angular/upgrade/bundles/upgrade.umd.js',
        // остальные пакеты
        'rxjs': 'npm:rxjs',
        'angular-in-memory-web-api': 'npm:angular-in-memory-web-api/bundles/in-memory-web-api.umd.js'
    },
    // пакеты, которые указывают загрузчику System, как загружать файлы без имени и расширения
    packages: {
        app: {
            main: './main.js',
            defaultExtension: 'js'
        },
        rxjs: {
            defaultExtension: 'js'
        }
    }
});

})(这个);

我不明白这个问题的原因。

请指教

在装饰器中,您应该使用templateUrl 而不是template。只要您引用的文件在同一个文件夹中,您就应该只使用文件名,而不是路径:

templateUrl: 'innerhome.component.html'

每次在组件装饰器中指向另一个文件时,还需要包含:

moduleId: module.id,

并确保您的 app.module 声明中包含 InnerTestComponent。

整个组件将如下所示:

从“@angular/core”导入{组件};

@Component({
  moduleId: module.id,
  selector: 'test',
  templateUrl: 'innerhome.component.html'
})
export class InnerTestComponent {
  name = '';
}