使用Angular.js导航问题

时间:2015-02-27 08:37:07

标签: angularjs angular-ui-router

我正在使用 Ionic Framework ,我遇到了下一个问题。

我有3个视图模板: one.html two.html three.html one.html < / strong>是应用程序的主页(没有后退按钮)

视图之间的导航是正确的,但如果从 three.html 导航到 one.html ,我会遇到问题,因为导航到 one.html 在导航栏中显示后退按钮,我需要 one.html 与应用启动状态相同

我使用$state.go('tab.one.html');

导航

感谢。

1 个答案:

答案 0 :(得分:0)

您可以使用nav-clear指令执行此操作(source)

或直接在您的控制器中实现代码:

$ionicViewService.nextViewOptions({
  disableAnimate: true,
  disableBack: true
});