需要在已编译的TypeScript

时间:2017-03-14 19:22:30

标签: angular typescript

刚开始使用Angular 2,我遇到了最棘手的问题。我从GitHub开始使用Angular 2 Quickstart repo,并添加了一些带有模板的组件。

例如:

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

import { LayoutComponent } from './layout.component';

@Component({
  selector: 'app',
  template: `<layout></layout>`,
})
export class AppComponent  { name = 'Angular'; }

编译的TS(生成的JS文件)如下所示:

"use strict";
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
    var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
    if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
    else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
    return c > 3 && r && Object.defineProperty(target, key, r), r;
};
var __metadata = (this && this.__metadata) || function (k, v) {
    if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
};
var core_1 = require('@angular/core');
var AppComponent = (function () {
    function AppComponent() {
        this.name = 'Angular';
    }
    AppComponent = __decorate([
        core_1.Component({
            selector: 'app',
            template: "<layout></layout>",
        }), 
        __metadata('design:paramtypes', [])
    ], AppComponent);
    return AppComponent;
}());
exports.AppComponent = AppComponent;
//# sourceMappingURL=app.component.js.map

正如您所看到的那样,LayoutComponent需要调用缺失,当然,找不到Layout组件,因此布局标记不存在(导致浏览器中出现运行时JS错误)。 / p>

所有组件都会发生这种情况而不考虑路径(引用同一目录中的组件或当前目录下方/上方的组件)。

为什么tsc不包括那些进口?

1 个答案:

答案 0 :(得分:3)

import { LayoutComponent } from './layout.component';

这只是一个带有ES6模块语法的import语句,它与Angular或任何框架无关。

  

为什么tsc不包括那些进口?

Tsc正在做它应该做的事情。它通过删除未使用的符号来优化编译。

我相信您正在尝试实现嵌套组件。如果AppComponent是根组件,则只需在LayoutComponent配置中将declaration添加到@NgModule,即声明根模块。

@NgModule({
    ...
    declarations: [
        AppComponent,
        LayoutComponent
    ]
})

虽然,最好有一个根组件,所以我将LayoutComponent封装在例如LayoutModule并将其添加到根模块

@NgModule({
    ...
    imports: [
        LayoutModule
    ],
    declarations: [
        AppComponent,
    ]
})

这是LayoutComponent可以在AppComponent中使用的方法,如果将组件/模块添加到根模块,几乎可以在整个应用程序中使用。