Hello I looked at $ionicViewService.clearHistory()
But it does not wok.
Hello I looked at $ionicViewService.clearHistory()
But it does not wok.
Have you tried navClear
?
http://ionicframework.com/docs/nightly/api/directive/navClear/
No will try it and let you know. Thanks.
I need to clear the nav history in controller, so I checked the source code od that directive and find this:
$ionicViewService.nextViewOptions({
disableAnimate: true,
disableBack: true
});
I add it in controller code before $state.go(…), and it can work.