【发布时间】:2023-03-14 15:24:01
【问题描述】:
当本地存储上已有令牌时,我想将页面重定向到主页(覆盖登录页面)。怎么做?我在 app.component.ts 的构造函数()上有以下代码,但它在请求完成之前首先显示登录
statusBar.backgroundColorByHexString('#D32F2F');
splashScreen.hide();
if(localStorage.getItem('token')){
authProvider.silent_login().subscribe(res => {
console.log(res);
if(res.error==0){
this.rootPage = HomePage;
}
})
}
【问题讨论】:
-
我想你也是在 constructor() 之前设置了 rootPage 吧?
-
是的,我想要。但我从不介意怎么做
标签: angular typescript ionic2