Page refreshing issue

Hello friends,

please help me,

I am facing an issue of page refreshment, when i redirect to other page using back button at that time i could not see updated list (data), it mean i think my page would not refreshed.

I’ve had experienced the same issue some times ago.
I used this trick afer updating my object in another page/provider : this.obj = JSON.parse(JSON.stringify(this.obj));
Then the address of your object will change and your view will be notified.

1 Like

You can use ionViewWillEnter() { ... } function to update the “list” every time the view are displayed.

1 Like

I don’t think this should ever be needed or useful.

1 Like

hey, sveinla thanks for your support :slight_smile:
a given suggestion is working for me