Refresh a page in ionic2

前端 未结 8 1397
灰色年华
灰色年华 2020-12-16 00:34

Is there a way to refresh only a page i.e. only one screen in ionic2.

I tried :

window.location.reload();

and

loca         


        
8条回答
  •  长情又很酷
    2020-12-16 00:47

    I would do that : (based on @Ahmad Aghazadeh answer)

    this.navCtrl.push(this.navCtrl.getActive().component).then(() => {
       let index = this.viewCtrl.index;
       this.navCtrl.remove(index);
    })
    

    => Push this page once more (loading it again)

    => Remove the page we were on (using index)

提交回复
热议问题