AngularUIを使用して、BootstrapコンポーネントをModalなどのAngular 1.4アプリに統合しています。
私は自分のコントローラーで次のようにモーダルを呼び出しています:
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
は本体から削除され、modal-backdrop
は、終了時にDOMから削除されます。私の例では、モーダルがフェードアウトしているのに、背景がDOMから削除されないのはなぜですか?
bootstrap= Modalsの背景についての他の多くの質問をチェックしましたが、何が間違っているのか理解できないようです。
これは明らかにバグが原因です。 AngularUIはAngular 1.4をまだサポートしていません。一度 http://github.com/angular-ui/bootstrap/issues/362 が解決されると、これは機能します。
チームがこれを整理するまで、ここで回避策があります。
<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();
});
}
};
}]);
}());
残念ながら、貢献者によって別のスレッドにプッシュされたチームは、この問題に関して同じページにいないようです。プッシュされたスレッドは、別の人によって「トピック外」と見なされて閉じられました。
私はAngularバージョン1.3.13を使用していますが、同様の問題があります。問題を調査しており、このバグはangularバージョン1.3.13から1.4 .1詳細はこちら https://github.com/angular-ui/bootstrap/pull/34
そして、そのリンクの一番下までスクロールすると、fernandojuniorによる投稿が表示され、彼がテストし、同じ問題を表示するようにアップグレードしたバージョンが表示されます。彼は問題をシミュレートするためにplnkerを作成しました http://plnkr.co/edit/xQOL58HDXTuvSDsHRbra と私は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>
<button type="button" class="close" onclick="$('.modal-backdrop').remove();"
data-dismiss="modal">
$(document).keypress(function(e) {
if (e.keyCode == 27) {
$('.modal-backdrop').remove();
}
});