UI 路由器 $state.go 没有重定向?

UI Router $state.go is not redirecting?

这是一个常见问题,我看到了很多,但似乎没有任何效果。这就是我正在做的。我想为我的状态添加一些动态动画,所以基本上登录会做一些很酷的动画并进入实际界面。现在,我开始像这样嵌套视图:

    $stateProvider
        .state('login', {
            url: '/login',
            title: "Login",
            views: {
                "master": {
                    controller: "LoginController",
                    templateUrl: "/components/login/login.html",
                    authentication: false
                }
            }
        })
        .state("logout", {
            url: "/logout",
            title: "Logout",
            authentication: false
        })
        .state('foo', {
            url: '/',
            controller: "HomeController",
            views: {
                "master": {
                    templateUrl: '/components/ui-views/masterView.html'
                },
                "sidebar@foo": {
                    templateUrl: '/components/sidebar/_sidebar.html'
                },
                "header@foo": {
                    templateUrl: '/components/header/_header.html'
                }
            }
        })
        .state('foo.inventory', {
            url: '/inventory',
            title: "Inventory",
            views: {
                "content@foo": {
                    controller: "InventoryController",
                    templateUrl: "/components/inventory/inventory.html"
                }
            }
        });

所以虽然 运行 我需要重定向到注销,但它卡住了。它根本不会从此注销状态移动。 以下是我的处理方式:

function run($http, $rootScope, $cookieStore, $state, $templateCache, $timeout, AuthService, modalService, const) {
        var timeout;

        FastClick.attach(document.body);
        $rootScope.globals = $cookieStore.get('globals') || {};

if ($state.current.name !== 'login' && !$rootScope.globals.guid) {
            $state.go('login');
        } else if ($state.current.name == 'login' && $rootScope.globals.guid) {
            $state.go('foo');
        }

        $rootScope.$on('$stateChangeStart', function (event, next, current, fromState, fromParams) {
            var authorizedRoles = next.level != undefined ? next.level : 1,
                needAuth = next.authentication != undefined ? next.authentication : true;

            if (needAuth) {
                if (!AuthService.isAuthorized(authorizedRoles, true)) {
                    event.preventDefault();
                    if (AuthService.isAuthenticated()) {
                        $rootScope.$broadcast(const.auth.notAuthorized);
                        $state.go('foo', {});
                    } else {
                        $rootScope.$broadcast(const.auth.notAuthenticated);
                    }
                }
            }

            if (next.name == 'logout') AuthService.logout($rootScope.globals);
        });

}

那为什么这行不通呢?看起来这个工作正常。但是 $state.go('login') returns 一个错误的值。

如果有人能指导我正确的方向,或者告诉我到底哪里出了问题。

问题是 $state.go 在 运行 中,关于这个主题的文档似乎不多。 $state.go 尚未初始化,不会 运行.

我遇到了同样的问题。在调试了 ui-sref 属性如何用于超链接之后,我发现 $state.go 包裹在核心 angular-ui 库中的 $timeout 周围。

var transition = $timeout(function() {
                debugger;
                $state.go("app.authentication");
            });

或许你也可以试试。 (尽管核心库中的 ui-sref 事件处理程序清楚地提到这是一个 hack。)

只需要升级ui-router版本就可以了,见连接地址:https://github.com/mattlewis92/angular-bluebird-promises/issues/11

If you upgrade to ui-router 0.3.2 it's actually been fixed there: angular-ui/ui-router@66ab048

我在我的应用程序中遇到过这个问题,您正试图在与状态无关的内部 ui-view 上调用 $state.go,这就是您面临的问题,所以试试这个:

app.run(['$state', '$rootScope', '$timeout', 
function ($state, $rootScope, $timeout) {

 $timeout(function() { 
      $state.go('login');
    });   
}]);