“Starten Sie die Komponente Winkel neu” Code-Antworten

Starten Sie die Komponente Winkel neu

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

Starten Sie die Komponente Winkel neu

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

Ähnliche Antworten wie “Starten Sie die Komponente Winkel neu”

Fragen ähnlich wie “Starten Sie die Komponente Winkel neu”

Weitere verwandte Antworten zu “Starten Sie die Komponente Winkel neu” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen