Issues w/ routing / $state.go

@acveer You could disable cache per view/state too (as shown below)… For more details, http://ionicframework.com/docs/api/directive/ionNavView/

Disable cache within state provider

$stateProvider.state('myState', {
   cache: false,
   url : '/myUrl',
   templateUrl : 'my-template.html'
})

Disable cache with an attribute

<ion-view cache-view="false" view-title="My Title!">
  ...
</ion-view>
2 Likes