解决方法如下所示:
npm install -g @angular/cli
npm install bootstrap
ng new angular-bootstrap-modal
cd angular-bootstrap-modal
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { NgbModule } from '@ng-bootstrap/ng-bootstrap';
import { AppComponent } from './app.component';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
NgbModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
import { Component, ViewChild } from '@angular/core';
import { NgbModal } from '@ng-bootstrap/ng-bootstrap';
@Component({
selector: 'app-root',
template: `
Modal Title
Step {{ currentStep }} of 3
Step 1 Content
Step 2 Content
Step 3 Content
`
})
export class AppComponent {
currentStep = 1;
constructor(private modalService: NgbModal) {}
open(content) {
this.modalService.open(content, { ariaLabelledBy: 'modal-basic-title' });
}
nextStep() {
this.currentStep++;
}
previousStep() {
this.currentStep--;
}
}
.modal-header {
background-color: #f5f5f5;
}
.modal-body {
min-height: 150px;
}
现在,运行ng serve
命令启动应用程序,并在浏览器中打开http://localhost:4200来查看结果。
点击“Open Modal”按钮将会打开一个多步骤模态框,你可以通过点击“Next”和“Previous”按钮切换到不同的步骤,每个步骤下面都有相应的内容。当到达最后一个步骤时,将会出现一个“Close”按钮。