这是一个常见的问题,我看到它很多但似乎没有任何效果。这就是我正在做的事情。我希望我的状态有一些动态动画,所以基本上登录会做一些很酷的动画并进入实际的界面。现在,我开始嵌套这样的视图:
$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')
会返回一个错误值。
如果有人能指引我朝正确的方向前进,或者告诉我到底出了什么问题。
答案 0 :(得分:7)
问题是$ state.go正在运行中,似乎没有关于此主题的许多文档。 $ state.go尚未初始化,不会运行。
答案 1 :(得分:6)
我遇到了同样的问题。在调试属性ui-sref
如何为超链接工作之后,我发现$state.go
在核心angular-ui库中包含$ timeout。
var transition = $timeout(function() {
debugger;
$state.go("app.authentication");
});
也许你可以尝试一样。 (虽然核心库中的ui-sref事件处理程序清楚地提到这是一个黑客攻击。)
答案 2 :(得分:1)
只需要升级UI-路由器版本就可以了,见连接地址:https://github.com/mattlewis92/angular-bluebird-promises/issues/11
如果升级到ui-router 0.3.2,它实际上已经修复了:angular-ui / ui-router @ 66ab048
答案 3 :(得分:1)
我在我的应用中遇到过这个问题,你试图在与州不相关的内部$state.go
上调用ui-view
,那就是你遇到了这个问题,所以试试这个:< / p>
app.run(['$state', '$rootScope', '$timeout',
function ($state, $rootScope, $timeout) {
$timeout(function() {
$state.go('login');
});
}]);