“Comment recharger un composant en angulaire” Réponses codées

comment actualiser la page angulaire

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

actualiser le composant courant angulaire

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

Comment recharger un composant en angulaire

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

composant de reloade angulaire

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

Recharger le sous-composant angulaire

this.router.navigateByUrl('/RefreshComponent', { skipLocationChange: true }).then(() => {
    this.router.navigate(['Your actualComponent']);
}); 
|_Genos_|

Comment faire un rechargement de composant en angulaire

DeleteEmployee(id:number)
  {
    this.employeeService.deleteEmployee(id)
    .subscribe( 
      (data) =>{
        console.log(data);
        this.ngOnInit();
      }),
      err => {
        console.log("Error");
      }   
  }
Famous Fly

Réponses similaires à “Comment recharger un composant en angulaire”

Questions similaires à “Comment recharger un composant en angulaire”

Plus de réponses similaires à “Comment recharger un composant en angulaire” dans TypeScript

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code