How To Reload Or Re-Render The Entire Page Using AngularJS
Here we expain how to Reload Or Re-Render The Entire Page Using AngularJS.
There are mainly two ways for doing this.
1. Reinitialise the controllers by using $route.reload().
2. Reloading the entire page can be done by $window.location.reload().

The above is the code format for $route.reload().
Reloading the route can be done by using $route.reload()
$route.reload() doesn't reset the whole state of your application.

The above is the code format for $window.location.reload().
$window.location.reload() reset the whole state of your application.
Reloading the entire page can be done by using $window.location.reload().