Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.2k views
in Technique[技术] by (71.8m points)

ionic framework - Setting opening page in app-routing module doesn't redirect as expected

I have walkthrough page built using ion-slides. I had set this page to be the first page to open when the app had launched in app-routing.module.ts:

{
    path: '',
    redirectTo: 'walkthrough',
    pathMatch: 'full'
  },

However if I change the starting page to any other page the app will consistently start with the waklthourgh page:

{
    path: '',
    redirectTo: 'login',
    pathMatch: 'full'
  },

All paths are set correctly:

{
    path: 'walkthrough',
    loadChildren: () => import('./walkthrough/walkthrough.module').then(m => m.WalkthroughPageModule)
  },

 {
    path: 'login',
    loadChildren: () => import('./auth/login/login.module').then( m => m.LoginPageModule)
  },

Any input appreciated.

EDIT: adding login routing.module.ts:

import { NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';

import { LoginPage } from './login.page';

const routes: Routes = [
  {
    path: '',
    component: LoginPage
  }
];

@NgModule({
  imports: [RouterModule.forChild(routes)],
  exports: [RouterModule],
})
export class LoginPageRoutingModule {}
question from:https://stackoverflow.com/questions/65908571/setting-opening-page-in-app-routing-module-doesnt-redirect-as-expected

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...