“Componente de actualización angular en el botón Haga clic” Código de respuesta

botón de recarga de la página con Angular

at template use event buinding:
	(click)="reloadCurrentPage()"
inside the .ts file, add the function,
reloadCurrentPage() {
    window.location.reload();
   }
Funny Frog

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

Anchor Haga clic en Evento Página de actualización angular

<a href="javascript:void(0);" (click)="yourClickEvent();">A Tag</a>
Grumpy Gull

Componente de actualización angular en el botón Haga clic

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

Respuestas similares a “Componente de actualización angular en el botón Haga clic”

Preguntas similares a “Componente de actualización angular en el botón Haga clic”

Más respuestas relacionadas con “Componente de actualización angular en el botón Haga clic” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código