如何在 ngBootstrap 和 Angular 中监听模态框的关闭事件?

ger*_*via 2 typescript ng-bootstrap angular2-observables angular

我正在尝试使用 ngbootstra 订阅模式的关闭事件,但我不明白它是如何工作的。我有 2 个组件,第一个组件用于启动模式,第二个组件位于第二个组件内。

第一个

html

<button class="btn btn-lg btn-outline-primary" (click)="open()">Launch demo modal</button>
Run Code Online (Sandbox Code Playgroud)

TS

import { OtherComponent } from './../other/other.component';
import { Component, OnInit } from '@angular/core';
import { NgbModal } from '@ng-bootstrap/ng-bootstrap';
import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap/modal/modal.module';

@Component({
  selector: 'app-joker',
  templateUrl: './joker.component.html',
  styleUrls: ['./joker.component.scss']
})
export class JokerComponent {
  constructor(private modalService: NgbModal, private activeModal: NgbActiveModal) { }

  open(): void{ 
    const modalRef = this.modalService.open(OtherComponent, {centered: true});
    modalRef.componentInstance.name = 'Gerardo';
  }
}
Run Code Online (Sandbox Code Playgroud)

第二次

html

<div class="modal-header">
  <h4 class="modal-title">Hi there!</h4>
  <button type="button" class="close" aria-label="Close" (click)="activeModal.dismiss('Cross click')">
    <span aria-hidden="true">&times;</span>
  </button>
</div>
<div class="modal-body">
  <p>Hello, {{name}}!</p>
</div>
<div class="modal-footer">
  <button type="button" class="btn btn-outline-dark" (click)="activeModal.close('Close click')">Close</button>
</div>
Run Code Online (Sandbox Code Playgroud)

TS

import { Component, Input} from '@angular/core';
import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap';

@Component({
  selector: 'app-other',
  templateUrl: './other.component.html',
  styleUrls: ['./other.component.scss']
})
export class OtherComponent {

  @Input() name: any;
  constructor(public activeModal: NgbActiveModal) { }
  

}
Run Code Online (Sandbox Code Playgroud)

但我不知道如何进行订阅,因为它说 close 方法不是可观察的,我也喜欢知道当模态在第二个组件(第二)中关闭时如何发出任何值有人知道怎么做吗它?。

顺便问一下,有必要取消订阅吗?

Ald*_*ric 6

您可以访问result您的变量modalRef,因为它返回一个 Promise,即

modalRef.result.then((data) => {
  // on close
},
(error) => {
  // on error/dismiss
});
Run Code Online (Sandbox Code Playgroud)

请参阅文档以获取更多信息。

您无法订阅该方法的原因close是它返回 void 而不是 Observable(也在文档中列出)。

一般而言,我个人会将打开和关闭方法移至服务中,以便您的其他组件(应该侦听关闭事件的组件)可以访问该modalRef变量。

  • 记住在 Promise 中使用 `then((data)=&gt;{...},(error)=&gt;{...})`。在 ngb-bootstrap 模式中,如果您使用“关闭”或关闭外部单击,则会弹出最后一部分 - 错误 - 。如果你不处理错误(你什么也不能做,但你需要声明),Angular 会给你一个错误 (2认同)