“Segarkan halaman halaman” Kode Jawaban

Halaman Refresh 8 Ts Angular

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

halaman refresh sudut tanpa memuat ulang

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

Segarkan halaman halaman

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

Segarkan Sudut Komponen Arus

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

Cara memuat ulang komponen dalam sudut

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

komponen muat ulang sudut

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

Jawaban yang mirip dengan “Segarkan halaman halaman”

Pertanyaan yang mirip dengan “Segarkan halaman halaman”

Lebih banyak jawaban terkait untuk “Segarkan halaman halaman” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya