4

我有一个带有一些模块的应用程序。

这是我的根模块:

// imports...

@NgModule({
    bootstrap: [ AppModule ],
    declarations: [
        AppComponent,
        ...APP_PIPES // Array with my pipes
    ],
    imports: [ // import Angular's modules
        BrowserModule,
        FormsModule,
        ReactiveFormsModule,
        HttpModule,
        RouterModule.forRoot(ROUTES),
        ...APP_MODULES, // Array with my modules
        ...THIRD_PARTY_MODULES // Array with libs modules
    ],
    providers: [ // expose our Services and Providers into Angular's dependency injection
        ENV_PROVIDERS,
        APP_PROVIDERS
    ]
})
export class AppModule {
 ...
}

这是我的常用模块之一:

import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';

import { MenuComponent } from './menu.component';

@NgModule({
    declarations: [ MenuComponent ],
    exports: [ MenuComponent ],
    imports: [ CommonModule ],
    providers: [ ]
})

export class MenuModule {
  ...
}

我认为这是正确的方法,但是我收到以下错误:

AppModule 不是任何 NgModule 的一部分,或者该模块尚未导入您的模块

我在整个应用程序中搜索了 AppModule,我只在app.module.ts.

我是否缺少导入/导出某些东西?任何帮助都会很棒。谢谢。

4

1 回答 1

5

这个

bootstrap: [ AppModule ],

应该

bootstrap: [ AppComponent ],

这里需要通过AppModule

platformBrowserDynamic().bootstrapModule(AppModule);
于 2016-11-16T17:12:05.760 回答