Is there a way to refresh only a page i.e. only one screen in ionic2.
I tried :
window.location.reload();
and
loca
Try this: $window.location.reload(); $route.reload() use to reload route.
if you are using $stateProvider : $state.go($state.current, {}, {reload: true})
;
or
var currentPageTemplate = $route.current.templateUrl;
$templateCache.remove(currentPageTemplate);
$route.reload();
Try this code :
this.navCtrl.setRoot(this.navCtrl.getActive().component);