“Componente de atualização angular no botão Clique” Respostas de código

botão de recarga da página usando o Angular

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

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

Anchor Click Event Angular Refresh Página

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

Componente de atualização angular no botão Clique

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

Respostas semelhantes a “Componente de atualização angular no botão Clique”

Perguntas semelhantes a “Componente de atualização angular no botão Clique”

Mais respostas relacionadas para “Componente de atualização angular no botão Clique” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código