Answers for "self reload in angular"

0

angular 8 ts refresh page

refresh(): void {
    window.location.reload();
}
Posted by: Guest on November-25-2020
3

angular refresh page without reloading

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

Code answers related to "TypeScript"

Browse Popular Code Answers by Language