$ uibModalInstance是否有.ready或.opened等属性?我试图根据传递给它的数据更改UI Bootstrap模式中的CSS类元素。加载模态后,我需要一种方法来触发函数。我知道$ uibModal具有.opened,.close和.rendered等属性,但这会在创建模态的控制器中触发,而不是在模态控制器本身内。由于所有数据都在模态控制器内,我无法从外部控制器访问它。
有什么建议吗?
答案 0 :(得分:7)
您可以访问模态控制器中的$ uibModalInstance并执行以下操作:
angular.module('ui.bootstrap.demo').controller('ModalInstanceCtrl', function ($scope, $uibModalInstance, items) {
$uibModalInstance.rendered.then(function() {
alert('modal has rendered');
});
$uibModalInstance.opened.then(function() {
alert('modal has opened');
});
$uibModalInstance.closed.then(function() {
alert('modal has closed');
});
});