我正在使用AngularUI在我的Angular 1.4应用程序中集成Bootstrap组件,例如Modals。
我正在控制器中调用Modal,如下所示:
var modalInstance = $modal.open({
animation: true,
templateUrl: '/static/templates/support-report-modal.html',
controller: 'ModalInstanceCtrl'
});
不幸的是,当我想使用:
关闭模态时modalInstance.close();
模态本身消失,背景也淡出,但它没有从DOM中删除,因此它覆盖了整个页面,使页面无响应。
当我检查时,我看到了这个:
在https://angular-ui.github.io/bootstrap/#/modal上的文档示例中,正在从正文中移除类modal-open
,并在关闭时从DOM中删除整个modal-backdrop
。
为什么Modal会逐渐消失,但在我的示例中没有从DOM中删除背景?
我已经检查了很多关于bootstrap Modals背景的其他问题,但我似乎无法弄清楚出了什么问题。
答案 0 :(得分:18)
这显然是由于一个错误。 AngularUI尚不支持Angular 1.4。解决http://github.com/angular-ui/bootstrap/issues/3620后,这将有效。
答案 1 :(得分:5)
直到团队得到这个排序,这是一个解决方法。
<div class="modal-footer">
<button class="btn btn-primary"
ng-click="registerModal.ok()"
remove-modal>OK</button>
<button class="btn btn-warning"
ng-click="registerModal.cancel()"
remove-modal>Cancel</button>
</div>
/*global angular */
(function () {
'use strict';
angular.module('CorvetteClub.removemodal.directive', [])
.directive('removeModal', ['$document', function ($document) {
return {
restrict: 'A',
link: function (scope, element, attrs) {
element.bind('click', function () {
$document[0].body.classList.remove('modal-open');
angular.element($document[0].getElementsByClassName('modal-backdrop')).remove();
angular.element($document[0].getElementsByClassName('modal')).remove();
});
}
};
}]);
}());
不幸的是,该团队似乎没有关于此问题的同一页面,因为它被贡献者推送到一个单独的线程,然后被推送到的线程被另一个关闭,因为它被认为是“关闭主题”另一个。
答案 2 :(得分:2)
您可以这样做,首先关闭您已打开的模式
intent-filter
基本上是模态的id。如果有的话,将其删除
$('#nameOfModal').modal('hide');
最后关闭背景
$('body').removeClass('modal-open');
答案 3 :(得分:0)
我使用的是Angular 1.3.13版,并且有类似的问题。我一直在研究这个问题,并认为这个bug从角度版本1.3.13扩展到1.4.1详细信息https://github.com/angular-ui/bootstrap/pull/3400
如果你滚动到该链接的底部,你会看到fernandojunior的帖子显示他测试和升级的版本仍然显示相同的问题。他甚至创建了一个模拟问题http://plnkr.co/edit/xQOL58HDXTuvSDsHRbra的plnker,我使用Angular-UI模式代码示例在下面的代码片段中模拟了这个问题。
// angular.module('ui.bootstrap.demo', ['ngAnimate', 'ui.bootstrap']);
angular
.module('ui.bootstrap.demo', [
'ngAnimate',
'ui.bootstrap',
]);
angular.module('ui.bootstrap.demo').controller('ModalDemoCtrl', function ($scope, $modal, $log) {
$scope.items = ['item1', 'item2', 'item3'];
$scope.animationsEnabled = true;
$scope.open = function (size) {
var modalInstance = $modal.open({
animation: $scope.animationsEnabled,
templateUrl: 'myModalContent.html',
controller: 'ModalInstanceCtrl',
size: size,
resolve: {
items: function () {
return $scope.items;
}
}
});
modalInstance.result.then(function (selectedItem) {
$scope.selected = selectedItem;
}, function () {
$log.info('Modal dismissed at: ' + new Date());
});
};
$scope.toggleAnimation = function () {
$scope.animationsEnabled = !$scope.animationsEnabled;
};
});
// Please note that $modalInstance represents a modal window (instance) dependency.
// It is not the same as the $modal service used above.
angular.module('ui.bootstrap.demo').controller('ModalInstanceCtrl', function ($scope, $modalInstance, items) {
$scope.items = items;
$scope.selected = {
item: $scope.items[0]
};
$scope.ok = function () {
$modalInstance.close($scope.selected.item);
};
$scope.cancel = function () {
$modalInstance.dismiss('cancel');
};
});
<!doctype html>
<html ng-app="ui.bootstrap.demo">
<head>
<!-- angular 1.4.1 -->
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.4.1/angular.js"></script>
<!-- angular animate 1.4.1 -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.4.1/angular-animate.min.js"></script>
<script src="//angular-ui.github.io/bootstrap/ui-bootstrap-tpls-0.13.0.js"></script>
<script src="example.js"></script>
<link href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<div ng-controller="ModalDemoCtrl">
<script type="text/ng-template" id="myModalContent.html">
<div class="modal-header">
<h3 class="modal-title">I'm a modal!</h3>
</div>
<div class="modal-body">
<ul>
<li ng-repeat="item in items">
<a ng-click="selected.item = item">{{ item }}</a>
</li>
</ul>
Selected: <b>{{ selected.item }}</b>
</div>
<div class="modal-footer">
<button class="btn btn-primary" ng-click="ok()">OK</button>
<button class="btn btn-warning" ng-click="cancel()">Cancel</button>
</div>
</script>
<button class="btn btn-default" ng-click="open()">Open me!</button>
<button class="btn btn-default" ng-click="open('lg')">Large modal</button>
<button class="btn btn-default" ng-click="open('sm')">Small modal</button>
<button class="btn btn-default" ng-click="toggleAnimation()">Toggle Animation ({{ animationsEnabled }})</button>
<div ng-show="selected">Selection from a modal: {{ selected }}</div>
</div>
</body>
</html>
答案 4 :(得分:0)
<button type="button" class="close" onclick="$('.modal-backdrop').remove();"
data-dismiss="modal">
$(document).keypress(function(e) {
if (e.keyCode == 27) {
$('.modal-backdrop').remove();
}
});
答案 5 :(得分:-1)
我也在使用Angular 1.3.0,我也在使用UI bootstrap-tpls-0.11.2,出于某种原因我的问题发生在我重定向到新页面并且背景仍在显示时,所以我结束了添加此代码......
.then(function () {
$("#delete").on('hidden.bs.modal', function () {
$scope.$apply();
})
});
我实际上在这里找到了.... Hide Bootstrap 3 Modal & AngularJS redirect ($location.path)