“como fazer um componente recarregar em angular” Respostas de código

página de atualização angular sem recarregar

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

Atualizar o componente atual angular

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

Como recarregar um componente no angular

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

Componente de recarga angular

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

Recarregue o subtonete angular

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

como fazer um componente recarregar em angular

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

Respostas semelhantes a “como fazer um componente recarregar em angular”

Perguntas semelhantes a “como fazer um componente recarregar em angular”

Mais respostas relacionadas para “como fazer um componente recarregar em angular” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código