In the latest ion release (v1.0.0-beta.14), they introduced caching views. See IonView docs for more information on this.
You can disable caching for your route like this
.state('your.state', {
url: '/your/url',
cache: false,
views: {
}
})
or right in your mind
<ion-view cache-view="false" view-title="My Title!">
See ionNavView docs
Or you can even disable the cache globally for testing:
$ionicConfigProvider.views.maxCache(0);
source
share