Ngx-Bootstrap-모달
ngx-bootstrap 모달 구성 요소는 유연하고 고도로 구성 가능한 대화 상자 프롬프트이며 여러 기본값을 제공하며 최소 코드로 사용할 수 있습니다.
ModalDirective
선택자
[bsModal]
입력
config − ModalOptions, 요소 속성을 통해 모달 구성을 설정할 수 있습니다.
출력
onHidden −이 이벤트는 모달이 사용자에게 숨겨 졌을 때 시작됩니다 (CSS 전환이 완료 될 때까지 기다립니다).
onHide −이 이벤트는 hide 인스턴스 메서드가 호출되면 즉시 시작됩니다.
onShow −이 이벤트는 show instance 메소드가 호출되면 즉시 발생합니다.
onShown −이 이벤트는 모달이 사용자에게 표시되면 시작됩니다 (CSS 전환이 완료 될 때까지 기다립니다).
행동 양식
show() − 모달을 수동으로 열 수 있습니다.
hide() − 모달을 수동으로 닫을 수 있습니다.
toggle() − 모달 가시성을 수동으로 전환 할 수 있습니다.
showElement() − 대화 표시.
focusOtherModal() − 이벤트 트릭.
예
모달을 사용할 것이므로 ngx-bootstrap 드롭 다운 장에서 사용 되는 app.module.ts를 사용하도록 업데이트 해야합니다.ModalModule 과 BsModalService.
ModalModule 및 BsModalService를 사용하도록 app.module.ts를 업데이트하십시오.
app.module.ts
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { AppComponent } from './app.component';
import { TestComponent } from './test/test.component';
import { AccordionModule } from 'ngx-bootstrap/accordion';
import { AlertModule,AlertConfig } from 'ngx-bootstrap/alert';
import { ButtonsModule } from 'ngx-bootstrap/buttons';
import { FormsModule } from '@angular/forms';
import { CarouselModule } from 'ngx-bootstrap/carousel';
import { CollapseModule } from 'ngx-bootstrap/collapse';
import { BsDatepickerModule, BsDatepickerConfig } from 'ngx-bootstrap/datepicker';
import { BsDropdownModule,BsDropdownConfig } from 'ngx-bootstrap/dropdown';
import { ModalModule, BsModalService } from 'ngx-bootstrap/modal';
@NgModule({
declarations: [
AppComponent,
TestComponent
],
imports: [
BrowserAnimationsModule,
BrowserModule,
AccordionModule,
AlertModule,
ButtonsModule,
FormsModule,
CarouselModule,
CollapseModule,
BsDatepickerModule.forRoot(),
BsDropdownModule,
ModalModule
],
providers: [AlertConfig, BsDatepickerConfig, BsDropdownConfig,BsModalService],
bootstrap: [AppComponent]
})
export class AppModule { }
모달을 사용하려면 test.component.html을 업데이트하십시오.
test.component.html
<button type="button" class="btn btn-primary" (click)="openModal(template)">Open modal</button>
<ng-template #template>
<div class="modal-header">
<h4 class="modal-title pull-left">Modal</h4>
<button type="button" class="close pull-right" aria-label="Close" (click)="modalRef.hide()">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
This is a sample modal dialog box.
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" (click)="modalRef.hide()">Close</button>
</div>
</ng-template>
해당 변수 및 메소드에 대한 test.component.ts를 업데이트하십시오.
test.component.ts
import { Component, OnInit, TemplateRef } from '@angular/core';
import { BsModalRef, BsModalService } from 'ngx-bootstrap/modal';
@Component({
selector: 'app-test',
templateUrl: './test.component.html',
styleUrls: ['./test.component.css']
})
export class TestComponent implements OnInit {
modalRef: BsModalRef;
constructor(private modalService: BsModalService) {}
openModal(template: TemplateRef<any>) {
this.modalRef = this.modalService.show(template);
}
ngOnInit(): void {
}
}
구축 및 봉사
다음 명령을 실행하여 각도 서버를 시작하십시오.
ng serve
일단 서버가 가동되고 실행됩니다. http : // localhost : 4200을 엽니 다. 모달 열기 버튼을 클릭하고 다음 출력을 확인하십시오.