所以我有这个网址:
https://todo-ionic.thehangrycoder.now.sh/todo/new
通常您通过以下方式访问此页面
https://todo-ionic.thehangrycoder.now.sh/todo/
然后,详细信息页面上将有一个后退按钮,返回到Todo概述。
但是当您直接进入https://todo-ionic.thehangrycoder.now.sh/todo/new…时,它仍然显示后退按钮,但是当按下时,它什么也没做。
我正在使用默认的href:
<ion-buttons slot="start">
<ion-back-button default-href="/todo"></ion-back-button>
</ion-buttons>
完整的项目位于:https://github.com/fransyozef/todo-challenge/tree/master/frontend/ionic4/todo-app
答案 0 :(得分:0)
您必须像这样使用后退按钮:
<ion-buttons slot="start">
<ion-back-button text="" defaultHref="/"></ion-back-button>
</ion-buttons>