我正在使用AlertModule
中的ng2-bootstrap
。在imports
部分,如果我只使用AlertModule
,我会收到错误Value: Error: No provider for AlertConfig!
。如果我使用AlertModule.forRoot()
,应用程序工作正常。为什么呢?
我的app.module.ts
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { FormsModule } from '@angular/forms';
import { HttpModule } from '@angular/http';
import {AlertModule} from 'ng2-bootstrap/ng2-bootstrap';
import { AppComponent } from './app.component';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
FormsModule,
HttpModule,
// AlertModule, /*doesn't work*/
AlertModule.forRoot() /*it works!*/
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
答案 0 :(得分:3)
forRoot
命名的静态函数有own purpose。它们用于应用程序级单例服务。
AlertModule
中没有任何提供者。当您致电forRoot
时,它会返回 ModuleWithProviders 类型的对象,其中包含AlertModule
本身及其声明以及{{1}中使用的提供程序}。
AlertModule
查看import { CommonModule } from '@angular/common';
import { NgModule, ModuleWithProviders } from '@angular/core';
import { AlertComponent } from './alert.component';
import { AlertConfig } from './alert.config';
@NgModule({
imports: [CommonModule],
declarations: [AlertComponent],
exports: [AlertComponent],
entryComponents: [AlertComponent]
})
export class AlertModule {
static forRoot(): ModuleWithProviders {
return { ngModule: AlertModule, providers: [AlertConfig] };
}
}
的提供者部分是否遗漏。这意味着如果仅导入NgModule
,则不会提供AlertModule
。但是,当您在其上调用providers
时,它会向提供商forRoot
返回AlertModule
添加内容。