Answers for "“angular refresh page without reloading”"

2

angular refresh page without reloading

this.router.navigate(['path/to'])
  .then(() => {
    window.location.reload();
  });
Posted by: Guest on January-06-2021
1

angular reload component

reloadCurrentRoute() {
    let currentUrl = this.router.url;
    this.router.navigateByUrl('/', {skipLocationChange: true}).then(() => {
        this.router.navigate([currentUrl]);
    });
}
Posted by: Guest on September-25-2020

Code answers related to "“angular refresh page without reloading”"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language