当用户访问Ionic 4中的特定路线时重定向用户

时间:2019-03-03 18:22:31

标签: angular ionic-framework routing ionic4

我在Ionic 4 App中工作,并且在登录系统上工作,当用户登录时,它将重定向到页面,用户可以在其中检查用户的挑战以及何时未登录以及是否登录。尝试访问该页面,然后应重定向到另一页面。

这是我的 userlogin.ts

async UserLoginDetails($soctype, $socid) {
    const loading = await this.loadingController.create({
      message: 'Please Wait',
      duration: 1100,
      translucent: true,
    });
    await loading.present();
    const userdetailslogin = {
      email: this.userlogindet.value.email,
      password: this.userlogindet.value.password,
      social_type: $soctype,
      social_id: $socid,
    };
    this.chakapi.loginUser(userdetailslogin, 'userLogin').subscribe((data) => {
      console.log(data);
      if (data) {
        this.responseEdit = data;
        if (this.responseEdit.status === 'success') {
          console.log(this.responseEdit.data.id);
          this.storage.set('ID', this.responseEdit.data.id);
          this.presentAlertConfirm('Login Successful', 1);
        } else {
          this.presentAlertConfirm('Either You are not registered Or not approved user.', 0);
        }
      }
    });
    return await loading.onDidDismiss();
}

async presentAlertConfirm($messge, $para) {
    const alert = await this.alertController.create({
      message: $messge,
      buttons: [
        {
          text: 'Cancel',
          role: 'cancel',
          cssClass: 'secondary',
          handler: () => {
            // console.log('Confirm Cancel: blah');
            if ($para === 1) {
              this.modalController.dismiss();
              this.router.navigate(['/tabs/tab2']);
            }
          }
        }]
    });
    await alert.present();
}

用户登录后,其用户ID将存储在存储中。

这是我的 tabs.router.module.ts

import { NgModule } from '@angular/core';
import { RouterModule, Routes } from '@angular/router';
import { TabsPage } from './tabs.page';

const routes: Routes = [
  {
    path: 'tabs',
    component: TabsPage,
    children: [
      {
        path: 'tab1',
        children: [
          {
            path: '',
            loadChildren: '../tab1/tab1.module#Tab1PageModule'
          }
        ]
      },
      {
        path: 'tab2',
        children: [
          {
            path: '',
            loadChildren: '../tab2/tab2.module#Tab2PageModule'
          }
        ]
      },
      {
        path: 'tab4',
        children: [
          {
            path: '',
            loadChildren: '../login/login.module#LoginPageModule'
          }
        ]
      },
      {
        path: 'tab3',
        children: [
          {
            path: '',
            loadChildren: '../tab3/tab3.module#Tab3PageModule'
          }
        ]
      },
      {
        path: '',
        redirectTo: '/tabs/tab1',
        pathMatch: 'full'
      }
    ]
  },
  {
    path: '',
    redirectTo: '/tabs/tab1',
    pathMatch: 'full'
  }
];

@NgModule({
  imports: [
    RouterModule.forChild(routes)
  ],
  exports: [RouterModule]
})
export class TabsPageRoutingModule {}

我希望当用户未登录并尝试访问tab2路由时,它应该重定向到其他页面。

我应该使用警卫服务还是正确执行此操作。我要将用户ID存储在存储中,因为我想多次使用它。

任何建议或帮助都将不胜感激。请帮助我编写代码,因为我正在从事一个项目,并且希望按时完成。

非常感谢您的帮助。

1 个答案:

答案 0 :(得分:1)

您可以使用防护装置来完成此操作。警卫人员将确定用户是否已登录。否则,用户将被重定向到另一条路线(登录页面或您希望他们到达的任何地方)。


authentication.guard.ts

@Injectable({
  providedIn: 'root'
})
export class AuthenticationGuard implements CanActivate {

  constructor(private _router: Router) {}

  canActivate(
    next: ActivatedRouteSnapshot,
    state: RouterStateSnapshot): Observable<boolean> | Promise<boolean> | boolean {

    let isLoggedIn: boolean = false;

    // NOTE: Do your logic here to determine if the user is logged in or not.

    // return true if use is authenticated
    if(isLoggedIn) return true;

    // else redirect the user to another route and return false.
    this._router.navigate(['login']);
    return false;
  }
}

tabs.router.module.ts

const routes: Routes = [
  {
    path: 'tabs',
    component: TabsPage,
    children: [
      ...
      {
        path: 'tab2',
        canActivate: [AuthenticationGuard],
        children: [
          {
            path: '',
            loadChildren: '../tab2/tab2.module#Tab2PageModule'
          }
        ]
      },
      ...
    ]
  }
  ...
];

防角保护装置与过滤器一样使用。您可以在路由中添加一系列保护/过滤器,以访问该路由(作为链),必须满足所有这些条件。在路由数组中,向要过滤的路由添加canActivate属性。在上面的示例中,我将AuthenticationGuard添加到了tab2路由中,该路由仅在用户尝试访问tab2或其任何子级时才运行。您可以将canActivate放在路由(tabs)的根处,以过滤tabs路由的所有子级(将过滤tab1tab2等)。

  

https://angular.io/api/router/CanActivate

     

https://angular.io/guide/router