“Winkel -Aktualisierungskomponente auf Schaltfläche Klicken Sie auf” Code-Antworten

Page Reload -Schaltfläche mit Angular

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

So laden Sie eine Komponente in Angular neu

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

Winkel -Reload -Komponente

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

Anker -Ereignis -Angular -Aktualisierungsseite klicken

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

Winkel -Aktualisierungskomponente auf Schaltfläche Klicken Sie auf

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

Ähnliche Antworten wie “Winkel -Aktualisierungskomponente auf Schaltfläche Klicken Sie auf”

Fragen ähnlich wie “Winkel -Aktualisierungskomponente auf Schaltfläche Klicken Sie auf”

Weitere verwandte Antworten zu “Winkel -Aktualisierungskomponente auf Schaltfläche Klicken Sie auf” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen