“componente de recarga angular” Código de respuesta

Página de actualización angular sin recargar

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

actualizar la página angular

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

Actualizar el componente de corriente angular

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

Cómo recargar un componente en 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

Recargar sub componente angular

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

Respuestas similares a “componente de recarga angular”

Preguntas similares a “componente de recarga angular”

Más respuestas relacionadas con “componente de recarga angular” en TypeScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código