我升级到UI路由器1.0.0,它已从.$on($stateChangeX
更改为$transitions.onX(
(see $transitions here)。
在导航到页面之前,我需要解析用户的个人资料及其访问权限(例如,用户永远都不会看到他们尝试转换到的页面)。以前,我能够直接在resolve
中使用state
并依次传递我需要的东西,例如:
state('my-state', {
...
resolve : {
ProfileLoaded : ['$rootScope', function ($rootScope) {
return $rootScope.loadProfile();
}],
access: ['Access', 'ProfileLoaded', function (Access, ProfileLoaded) {
return Access.hasORRoles(['admin']); //either $q.reject(status code); or "200"
}]
}
})
然后,我可以轻松地在
$stateChangeError
中检索错误类型:app.run(...
$rootScope.$on('$stateChangeError', function (event, toState, toParams, fromState, fromParams, error) {
if (error === 401) {
$state.go('home');
}
...
使用
$transitions
,我正在尝试做同样的事情....state('user.my-page', {
...
data: {
loadProfile: true,
roles: [
'admin'
]
}
});
app.run(...
$transitions.onBefore({to: profile}, function(trans) {
return loadProfile().then(function (prof) {
var substate = trans.to();
return Access.hasORRoles(substate.data.roles); //either $q.reject(status code); or "200"
});
});
$transitions.onError({}, function(trans) {
var error = trans && trans._error;
if (error == 401) {
$state.go('home');
}
...
所以我的问题是:
在确保用户在检查数据之前无法导航之前,
onBefore
是否与resolve
做相同的事情?页面仍在加载中,并在页面加载后使用$state.go
重定向。 最佳答案
只适合仍在这里着陆的人。
您可以返回 promise 以防止网站加载。
$transitions.onBefore({}, function(transition) {
return new Promise((resolve) => {
// Do auth..
return Access.hasORRoles(['admin']);
});
});
关于javascript - Angular UI Router 1.0.0-使用$ transitions.onBefore防止路由加载,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/41271974/