3

我对 Angular 有点陌生。当检测到无效的用户角色时,我正在尝试显示 Bootstap 3 模式对话框。我无法显示我的模态模板。该行为似乎有效,即我可以关闭褪色的覆盖层..我只是看不到实际的模态模板。

引导 3 AngularJS 1.0.7 AngularJS UI 引导 0.6.0

控制器

gsApp.controller('MainController', ['$rootScope', '$scope', '$q', '$window', '$location',     '$modal', 'ApplicationCache', 'UserService',
function MainController($rootScope, $scope, $q, $window, $location, $modal, ApplicationCache, UserService) {

   $scope.userRole = "BadRole";

    $scope.showBadRoleModel = function () {
        var showBadRoleModelInstance = $modal.open({
            templateUrl: "badRoleModal.html",
            backdrop: true,
            windowClass: 'modal',
            controller: badRoleModalInstance,
            resolve: {
                items: function () {
                    return $scope.userRole;
                }
            }
        });
    }

    var badRoleModalInstance = function($scope, $modalInstance, items){
        $scope.ok = function () {
            $modalInstance.close();
        };

        $scope.cancel = function () {
            $modalInstance.dismiss('cancel');
        };
    }
}]);

HTML

<div class="row" ng-controller="MainController">

            <script type="text/ng-template" id="badRoleModal.html">
                <div class="modal-header">
                    <h3>I'm a modal!</h3>
                </div>
                <div class="modal-body">
                    <h2>body</h2>
                </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" ng-click="showBadRoleModel()">Show bad role modal</button>
        </div>
4

2 回答 2

2

AngularJs UI Bootstrap 还不能与 Bootstrap 3 一起使用。

在此处查看更多详细信息:https ://github.com/angular-ui/bootstrap/issues/331

于 2013-10-04T03:46:57.287 回答
0

这是一个可重用的 Angular 指令,它将隐藏和显示 Bootstrap 3(或 2.x)模式。

app.directive("modalShow", function () {
    return {
        restrict: "A",
        scope: {
            modalVisible: "="
        },
        link: function (scope, element, attrs) {

            //Hide or show the modal
            scope.showModal = function (visible) {
                if (visible)
                {
                    element.modal("show");
                }
                else
                {
                    element.modal("hide");
                }
            }

            //Check to see if the modal-visible attribute exists
            if (!attrs.modalVisible)
            {

                //The attribute isn't defined, show the modal by default
                scope.showModal(true);

            }
            else
            {

                //Watch for changes to the modal-visible attribute
                scope.$watch("modalVisible", function (newValue, oldValue) {
                    scope.showModal(newValue);
                });

                //Update the visible value when the dialog is closed through UI actions (Ok, cancel, etc.)
                element.bind("hide.bs.modal", function () {
                    scope.modalVisible = false;
                    if (!scope.$$phase && !scope.$root.$$phase)
                        scope.$apply();
                });

            }

        }
    };

});

使用示例 #1 - 假设您要显示模式 - 您可以添加 ng-if 作为条件

<div modal-show class="modal fade"> ...bootstrap modal... </div>

使用示例 #2 - 在 modal-visible 属性中使用 Angular 表达式

<div modal-show modal-visible="showDialog" class="modal fade"> ...bootstrap modal... </div>

另一个示例 - 为了演示控制器交互,您可以在控制器中添加类似这样的内容,它将在 2 秒后显示模式,然后在 5 秒后将其隐藏。

$scope.showDialog = false;
$timeout(function () { $scope.showDialog = true; }, 2000)
$timeout(function () { $scope.showDialog = false; }, 5000)

我迟到了这个问题 - 为另一个问题创建了这个指令。以下是一些相关链接:Bootstrap Modal 的简单角度指令https://stackoverflow.com/a/19668616/1009125

希望这可以帮助。

于 2013-10-29T21:10:50.197 回答