我有一个Angular(4.3.2)应用程序,我想在其上执行AOT构建.应用程序是使用@ angular / cli创建的.我有两个使用ng generate搭建的组件和一个模块,其中两个都作为声明包含在内:
原文链接:https://www.f2er.com/angularjs/141034.htmlimport {PrivateComponent} from './private.component/private.component'; NgModule({ imports: [ // other imports PrivateRoutingModule ],declarations: [ ...some other components,PrivateComponent,AppTopBarComponent ] // other stuff }) export class PrivateModule {}
私有组件也用于模块的路由:
const routes: Routes = [ {path: '',component: PrivateComponent,children: // other components} ] @NgModule({ imports: [RouterModule.forChild(routes)] // this is the Angular built-in router module }) export class PrivateRoutingModule {}
请注意如何在另一个模块中定义路由并将其导入PrivateModule
AppTopBarComponent在PrivateComponent的模板中使用.所以两者都被使用和宣布.但是当我使用“node_modules / .bin / ngc”-p tsconfig-aot.json(我在Windows 10上)时,我收到以下错误消息:
无法确定(路径到项目)/src/app/pages/private/private.component/private.component.ts中的类PrivateComponent的模块!将PrivateComponent添加到NgModule以修复它.
无法在(path-to-project)/src/app/pages/private/app.topbar.component.ts中确定AppTopBarComponent类的模块!将AppTopBarComponent添加到NgModule以修复它.我的tsconfig-aot.json文件与Angular AOT build guide中的完全相同.