how to page reload in angular 8 code example
Example 1: how to refresh page angular
refresh(): void {
window.location.reload();
}
Example 2: How to Reload a Component in Angular
reloadComponent() {
let currentUrl = this.router.url;
this.router.routeReuseStrategy.shouldReuseRoute = () => false;
this.router.onSameUrlNavigation = 'reload';
this.router.navigate([currentUrl]);
}