我正在学习在AngularJS和Bootstrap 4框架中使用Modal。我已设法显示它,但它没有正确显示,即在后台阻止组件,如果animation: true
则无法显示。我不确定导致这种情况的原因是因为我在我的app控制器中注入了ngAnimate
和ui.bootstrap
。
使用了Angular和ui-bootstrap版本
下面我将提供我的代码。
View.html
<div class="container-fluid content-container" ng-app="listEmployee">
<div class="change-password-modal-container"></div>
<script type="text/ng-template" id="myModalContent.html">
<div class="modal-header">
<h3 class="modal-title" id="modal-title">I'm a modal!</h3>
</div>
<div class="modal-body" id="modal-body">
<ul>
<li ng-repeat="item in ctrl.items">
<a href="#" ng-click="$event.preventDefault(); ctrl.selected.item = item">{{ item }}</a>
</li>
</ul>
Selected: <b>{{ ctrl.selected.item }}</b>
</div>
<div class="modal-footer">
<button class="btn btn-primary" type="button" ng-click="ctrl.ok()">OK</button>
<button class="btn btn-warning" type="button" ng-click="ctrl.cancel()">Cancel</button>
</div>
</script>
... <!--other html elements -->
</div>
以下是我在控制器中的代码,它与显示模态
有关Controller.js
var ctrl = this;
ctrl.items = ['item1', 'item2', 'item3'];
ctrl.animationsEnabled = false;
ctrl.open = function (size, parentSelector) {
var parentElem = parentSelector ?
angular.element($document[0].querySelector('.change-password-modal-container ' + parentSelector)) : undefined;
var modalInstance = $uibModal.open({
animation: ctrl.animationsEnabled,
ariaLabelledBy: 'modal-title',
ariaDescribedBy: 'modal-body',
templateUrl: 'myModalContent.html',
controller: 'ModalInstanceCtrl',
controllerAs: 'ctrl',
size: size,
appendTo: parentElem,
resolve: {
items: function () {
return ctrl.items;
}
}
});
modalInstance.result.then(function (selectedItem) {
ctrl.selected = selectedItem;
}, function () {
$log.info('Modal dismissed at: ' + new Date());
});
};
我的内容的z-index是1
mystyle.css
#content {
z-index: 1;
}
以下是animation:false
以下是animation:true
的截图(即模态不可见,就像模态在屏幕后面一样)
任何帮助将不胜感激。
答案 0 :(得分:1)
在GitHub中读取this issue后,发现这是使用Bootstrap时的问题4. Bootstrap 4与Bootstrap 3有不同的类名,在这种情况下,版本3中的.in
变为{版本4中的{1}}。
按照IdanCo在线程中的建议,我在下面重写(所以其他人更容易阅读)解决了这个问题。
从 ui-bootstrap-tpls - ###。js 更改类名称,如下所示。
.show
希望此更新可以在将来帮助某人。