使用Angular清除所有的bootstrap-ui模式

Clear all bootstrap-ui modals using Angular?

本文关键字:bootstrap-ui 模式 Angular 清除 使用      更新时间:2023-09-26

当会话超时时,我们需要清除所有开放的模态。最好的技术是什么?我正试图远离jQuery,让它保持纯粹的Angular。

我们的情态动词按下列方式展开:

//configure the modal
      var modalOptions = {
        controller: 'modalCtrl',
        templateUrl: 'modal.html',
        windowClass: 'modal-class',
        transclude: true
      };
      // open the modal
      myModal = $modal.open(modalOptions);

我试过模拟背景上的点击和模拟逃离键,没有运气。任何帮助都非常感谢!

实际上这很简单:注入$modalStack服务并在其上调用dismissAll方法就足够了:

$modalStack.dismissAll(reason);

例:

$modalStack.dismissAll('session timeout');