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, just pop one page and then push that page again.
this.navCtrl.pop(); this.navCtrl.push(NewPage);
Hope this will help.