Angular UI Bootstrap模态对话框关闭事件

时间:2013-12-29 14:00:56

标签: angularjs modal-dialog angular-ui-bootstrap

如何检测Angular UI Bootstrap模态对话框何时关闭?

我需要知道对话框关闭的时间,以便我可以使用angular-http-auth库广播loginCancelled事件,以防止我的Angular UI挂起,尤其是在通过点击背景关闭模式后。 / p>

3 个答案:

答案 0 :(得分:16)

这适用于单击背景并按下esc键,如果您选择了它。

var modalInstance = $modal.open({
    templateUrl: '/app/yourtemplate.html',
    controller: ModalInstanceCtrl,
    windowClass: 'modal',
    keyboard: true,
    resolve: {
        yourResulst: function () {
            return 'foo';
        }
    }
});

var ModalInstanceCtrl = function ($scope, $modalInstance, yourResulst) {

    var constructor = function () {
       // init stuff
    }

    constructor();

    $modalInstance.result.then(function () {
        // not called... at least for me
    }, function () {
        // hit's here... clean up or do whatever
    });

    // VVVV other $scope functions and so on...

};

更新:替代方法

我不知道为什么http://angular-ui.github.io/bootstrap/没有记录这种方式...但我觉得它好多了。您现在可以使用该页面的控制器或使用控制器的特定控制器作为语法。如果你想在html上分离,你甚至可以使用ng-include作为模态的内容。只要您的项目/站点中包含bootstrap / bootstrapUI,以下工作在控制器中不需要JS来设置/配置模态

<div class="row">

    <button class="btn btn-default" data-toggle="modal" data-target="#exampleModal">Open Example Modal</button>

</div>

<div class="modal fade" id="exampleModal" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
    <div class="modal-dialog modal-lg">
        <div class="modal-content">
            <div class="modal-header">
                <button type="button" class="close" data-dismiss="modal">Close</button>
                <h2 class="modal-title" id="exampleModalLabel">Modal Example</h2>
            </div>
            <div class="modal-body" style="padding-bottom:0px;">

                <h3>model markup goes here</h3>

            </div>
        </div>
    </div>
</div>

答案 1 :(得分:10)

我完成了以下代码:

$modal.open(modalOptions).result.finally(function(){
  console.log('modal has closed');
});

这样你可以避免使用方法()

答案 2 :(得分:0)

这对我有用:

$scope.object1 = angular.copy($scope.object2);