我捕获了modal.hidden事件,并对其进行了一些检查。当检查结果为false时,我想阻止模态隐藏。我使用e.preventDefault()。但它不起作用。 我的代码:
$scope.$on('modal.hidden', function(event) {
var isPassed = false;
// do some check
if (isPassed == false) {
event.preventDefault();
}
});
中的代码
答案 0 :(得分:12)
您可以在设置模式时使用backdropClickToClose
和hardwareBackButtonClose
选项,也可以隐藏后退按钮。这将阻止模态被关闭:
// Load the modal from the given template URL
$scope.modal = {};
$ionicModal.fromTemplateUrl('my-modal.html', {
scope: $scope,
animation: 'slide-in-up',
backdropClickToClose: false,
hardwareBackButtonClose: false
}).then(function(modal) {
$scope.modal = modal;
});
然后您可以进行一些检查并再次将这些值设置为true
,并显示后退按钮。这仍然是用户友好的,用户可以以适当的方式关闭模态。
function checkSomething(){
// The timeout is only to demonstrate, do your check here
$timeout(function(){
console.log("Now user can close modal")
$scope.isPassed = true;
$scope.modal.backdropClickToClose = true;
$scope.modal.hardwareBackButtonClose = true;
}, 3000)
}
更新了代码集here