2016-09-06 40 views
5

我有一個帶輸入字段的$ mdDialog。在關閉$ mdDialog之前,輸入字段的內容被保存。所以,當用戶按下「關閉」按鈕時,會調用一個函數對數據執行一些操作並保存它們。但是,我無法檢測到在ESC上關閉$ mdDialog。是否可以使用$ mdDialog控制器中的ESC檢測關閉事件?

以下是示例代碼。 Codepen link

angular.module('MyApp', ['ngMaterial']) 
 

 
.controller('AppCtrl', function($scope, $mdDialog, $rootScope) { 
 
    //$rootScope is used only of this demo 
 
    $rootScope.draft = ' '; 
 

 
    $scope.showDialog = function(ev) { 
 
    var msgDialog = $mdDialog.show({ 
 
     controller: 'DemoDialogCtrl', 
 
     template: "<md-input-container><label>Text</label><input type='text' ng-model='myText' placeholder='Write text here.'></md-input-container><md-button ng-click='close()'>Close</md-button>", 
 
    }) 
 

 
    }; 
 

 

 
}); 
 

 
(function() { 
 
    angular 
 
    .module('MyApp') 
 
    .controller('DemoDialogCtrl', DemoDialogCtrl); 
 

 
    DemoDialogCtrl.$inject = ['$scope', '$rootScope', '$mdDialog']; 
 

 
    function DemoDialogCtrl($scope, $rootScope, $mdDialog) { 
 

 

 
    $scope.close = function() { 
 
     //$rootScope is used only of this demo 
 
     // In real code, there are some other operations 
 
     $rootScope.draft = $scope.myText; 
 

 
     $mdDialog.hide(); 
 
    } 
 

 
    } 
 
})();
<div ng-controller="AppCtrl" class="md-padding dialogdemoBasicUsage" id="popupContainer" ng-cloak="" ng-app="MyApp"> 
 
    <div class="dialog-demo-content" layout="row" layout-wrap="" layout-margin="" layout-align="center"> 
 
    <md-button class="md-primary md-raised" ng-click="showDialog($event)"> 
 
     Open Dialog 
 
    </md-button> 
 
    <div id="status"> 
 
     <p>(Text written in $mdDialog text field must appear here when user closes the $mddialog. User can press close button or press ESC button. 
 
     </p> 
 
     <b layout="row" layout-align="center center" class="md-padding"> 
 
       Draft: {{draft}} 
 
      </b> 
 
    </div> 
 
    </div> 
 
</div>

回答

2

您應該使用承諾API。

$mdDialog.show().finally(
    function onModalClose(){ 

    } 
); 

但與外部代碼的接收器應與其他機制,例如通過提供範圍使用。

var modalScope = $rootScope.$new(true); 
$mdDialog.show({scope: modalScope}).finally(function(){ 
    $rootScope.draft = modalScope.myText; 
}); 
+0

這不能在$ mdDialog本身的控制器中處理嗎?我寧願不將責任推給$ mdDialog啓動的地方+我需要控制器的函數 –

+1

你可以提供範圍到模態並嘗試聆聽銷燬範圍$ on('$ destroy') –