“Odśwież stronę Angular” Kod odpowiedzi

strona kątowa 8 ts Odśwież

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

Strona odświeżania kątowego bez ponownego ładowania

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

Odśwież stronę Angular

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

Odśwież bieżący komponent kątowy

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

Jak ponownie załadować komponent w kątowym

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

Komponent przeładowania kątowego

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

Odpowiedzi podobne do “Odśwież stronę Angular”

Pytania podobne do “Odśwież stronę Angular”

Więcej pokrewnych odpowiedzi na “Odśwież stronę Angular” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu