4
我從ng2-bootstrap
使用AlertModule
。在imports
部分,如果我只是使用AlertModule
,我會收到錯誤Value: Error: No provider for AlertConfig!
。如果我使用AlertModule.forRoot()
,則應用程序正常工作。爲什麼?爲什麼我必須在導入NgModule時使用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 { }