我使用的是ui-router 1.0.0.beta.3。如何在转换过程中获取下一个状态的参数?
index.run.js
$transitions.onStart({ to: '**' }, verifyAuth);
function verifyAuth(trans) {
let nextState = trans.$to();
if (Auth.verify(nextState.authGroup) === -1) {
return $state.go('login', { nextState: nextState.name, nextParams: nextState.params}); // this doesn't work
}
}
我想存储它们,以便在认证成功后,我可以将用户重定向到他试图访问的状态+状态参数。
login.component.js
let nextState = this.$stateParams.nextState;
let nextParams = this.$stateParams.nextParams;
$state.go(nextState, nextParams);
答案 0 :(得分:15)
您的问题的答案是Transition.params()
function verifyAuth(trans) {
let nextState = trans.to();
let nextParams = trans.params();
if (Auth.verify(nextState.authGroup) === -1) {
return $state.go('login', { nextState: nextState.name, nextParams: nextParams});
}
}
但是,我建议研究ui-router 1.0 sample app如何执行身份验证检查和登录重定向:
此钩子通过返回$state.target('login')
https://github.com/ui-router/sample-app-ng1/blob/master/app/global/requiresAuth.hook.js#L15-L24
在登录状态下,登录后返回"状态"决心,决意,决定。它使用Transition.redirectedFrom()
检查原始转换的目标。
https://github.com/ui-router/sample-app-ng1/blob/master/app/main/app.states.js#L44-L83