Reload home page

Hello, I have some problems with the reload page in ionic.
Cause I want to make page to reload the page after checkout.
How I can solve it?

Thank in advance.

Why you need to reload the page?

1 Like

You can use ionViewWillEnter() function to reload page when page opens.Or you can use this line code for reloading page;

window.location.reload();

if you want to reload your page after a specific function or specific code run, you can use this line after the specific code like this:

someFunction() {
       // Some Code
       window.location.reload();
}

Do please answer @RomnEmpire’s question before taking any further advice from this thread. Chances are, you really do not want to be doing what you are asking, and especially using something as drastic as that suggested in the previous post.