我尝试执行以下操作:
我按此顺序有3页:mainPage -> econdPage -> thirdPage
我希望thirdPage
的后退按钮返回到secondPage
之前的页面,因此:mainPage
。
有任何想法如何实现这个?
答案 0 :(得分:0)
只需使用
$location.replace('thirdPage');
而不是
$location.path('thirdPage');
它将在历史记录中将secondPage交换为thirdPage,因此后面将转到mainPage。 Doc:$location