小编Moc*_*ani的帖子

应用程序启动后,Ionic 2重定向到另一个页面

我想在localStorage上已经有令牌时将页面重定向到主页(覆盖登录页面).怎么做?我在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;
          }
        })
      }
Run Code Online (Sandbox Code Playgroud)

typescript ionic2 angular

2
推荐指数
1
解决办法
1158
查看次数

标签 统计

angular ×1

ionic2 ×1

typescript ×1