“Aktualisieren Sie die Seite Winkel” Code-Antworten

Angular 8 ts Aktualisierung Seite

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

Winkel -Aktualisierungsseite ohne Nachladen

this.router.navigate(['path/to'])
  .then(() => {
    window.location.reload();
  });
DevPedrada

Aktualisieren Sie die Seite Winkel

refresh(): void {
    window.location.reload();
}
|_Genos_|

Stromkomponente Angular Aktualisieren

  reloadCurrentRoute() {
    let currentUrl = this._router.url;
    this._router.navigateByUrl('/', {skipLocationChange: true}).then(() => {
        this._router.navigate([currentUrl]);
        console.log(currentUrl);
    });
  }
Foolish Fly

So laden Sie eine Komponente in Angular neu

reloadComponent() {
  let currentUrl = this.router.url;
      this.router.routeReuseStrategy.shouldReuseRoute = () => false;
      this.router.onSameUrlNavigation = 'reload';
      this.router.navigate([currentUrl]);
  }
Courageous Chamois

Winkel -Reload -Komponente

reloadCurrentRoute() {
    let currentUrl = this.router.url;
    this.router.navigateByUrl('/', {skipLocationChange: true}).then(() => {
        this.router.navigate([currentUrl]);
    });
}
Courageous Chamois

Ähnliche Antworten wie “Aktualisieren Sie die Seite Winkel”

Fragen ähnlich wie “Aktualisieren Sie die Seite Winkel”

Weitere verwandte Antworten zu “Aktualisieren Sie die Seite Winkel” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen