Answers for "windonw. reload angular"

0

refresh page angular

refresh(): void {
    window.location.reload();
}
Posted by: Guest on March-16-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 "TypeScript"

Browse Popular Code Answers by Language