gpt4 book ai didi

routing - Ionic 4 路由不工作 url 更改但未显示 View

转载 作者:行者123 更新时间:2023-12-04 10:46:07 26 4
gpt4 key购买 nike

我正在开发一个 Ionic 4 应用程序,我有两页身份验证和注册,我在“app-routing.module”中添加了我的路由,我将我的身份验证组件设置为根组件,因此当我单击 View 上的按钮时路线改变,注册 View 没有出现:

App-routing.module

const routes: Routes = [
{ path: '', redirectTo: 'auth', pathMatch: 'full' },
{ path: 'auth', component: AuthenticationComponent },
{ path: 'registerFirst', component: RegistrationComponent},
];
...

这是身份验证 View 中的按钮
<ion-button expand="full" color="medium" [routerLink]="['/registerFirst']">CREATE AN 
ACCOUNT</ion-button>

最佳答案

像这样改变你的路由:

  { path: '', redirectTo: 'registration', pathMatch: 'full' },
{
path: 'registration',
loadChildren: 'yourpath/registration.module#RegistrationPageModule'
},
...

并且您必须将此代码添加到 registration.module.ts :
import { Routes, RouterModule } from '@angular/router';
const routes: Routes = [
{
path: '',
component: RegistrationPage
}
];
@NgModule({
imports: [
...
RouterModule.forChild(routes)
],
.....
})

我希望它能彻底奏效

关于routing - Ionic 4 路由不工作 url 更改但未显示 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59698325/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com