“ANGular Typecript -Aktualisierungsseite” Code-Antworten

Angular 8 ts Aktualisierung Seite

refresh(): void {
    window.location.reload();
}
Mostafa Bazyar

ANGular Typecript -Aktualisierungsseite

this.router.routeReuseStrategy.shouldReuseRoute = function(){
            return false;
         };
this.router.events.subscribe((evt) => {
            if (evt instanceof NavigationEnd) {
               // trick the Router into believing it's last link wasn't previously loaded
               this.router.navigated = false;
               // if you need to scroll back to top, here is the right place
               window.scrollTo(0, 0);
            }
        });
Excited Echidna

Angular 8 ts Aktualisierung Seite

<button (click)="refresh()">Refresh</button>
Mostafa Bazyar

Ähnliche Antworten wie “ANGular Typecript -Aktualisierungsseite”

Fragen ähnlich wie “ANGular Typecript -Aktualisierungsseite”

Weitere verwandte Antworten zu “ANGular Typecript -Aktualisierungsseite” auf TypeScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen