未显示 Ionic 4 路由器动画
Ionic 4 router animation is not shown
我使用本教程创建了一个小型 Ionic 4 / Angular 导航示例应用程序:https://www.youtube.com/watch?v=Yx_xJ4m-JxE
除路由器动画外,一切正常。使用 routerDirection="forward"
单击此项目会刷新整个页面,而不是仅对新页面进行动画处理。
<ion-menu-toggle auto-hide="false" *ngFor="let p of pages">
<ion-item [href]="p.url" [class.active-item]="selectedPath === p.url" routerDirection="forward">
<ion-label>
{{ p.title }}
</ion-label>
</ion-item>
</ion-menu-toggle>
我是否必须安装一个包或在某个地方启用路由动画??我是 运行 项目ionic serve
。
Ionic 4 导航与 angular 6+ 类似。
routerLink="/notifications"
或者你的情况
routerLink="[p.url]"
我使用本教程创建了一个小型 Ionic 4 / Angular 导航示例应用程序:https://www.youtube.com/watch?v=Yx_xJ4m-JxE
除路由器动画外,一切正常。使用 routerDirection="forward"
单击此项目会刷新整个页面,而不是仅对新页面进行动画处理。
<ion-menu-toggle auto-hide="false" *ngFor="let p of pages">
<ion-item [href]="p.url" [class.active-item]="selectedPath === p.url" routerDirection="forward">
<ion-label>
{{ p.title }}
</ion-label>
</ion-item>
</ion-menu-toggle>
我是否必须安装一个包或在某个地方启用路由动画??我是 运行 项目ionic serve
。
Ionic 4 导航与 angular 6+ 类似。
routerLink="/notifications"
或者你的情况 routerLink="[p.url]"