我正试图创建一个有角度的离子项目,所以我创建了一个名为ident的模块来放置登录和订阅组件,当我创建路由器在两个组件之间循环时,它不起作用,并且没有错误显示给我
离子V6.12.3
识别app-routing.ts和登录HTML
const routes: Routes = [
{
path: 'Login',
component: LoginComponent
},
{
path:'',
redirectTo:'Login',
pathMatch:'full'
},
{
path:'Signup',
component:InscritComponent
}
];
<ion-buttons slot="end">
<ion-button (click)="test()" [routerLink]="['/Signup']">Signup</ion-button>
</ion-buttons>
idnet.html
<ion-router-outlet></ion-router-outlet>
单击时,您正在为按钮分配两个同时执行的操作:
- test((,当用户点击按钮时从.ts文件调用
- routerLink,它使用RouterModule切换到其他页面
请尝试routerLink="/Signup"