“Компонент углового обновления на кнопке нажмите” Ответ

Кнопка перезагрузки страницы с помощью угловой

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

Как перезагрузить компонент в угловой

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

Угловой компонент перезагрузки

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

Страница Ancure Click Click Event Angular

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

Компонент углового обновления на кнопке нажмите

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

Ответы похожие на “Компонент углового обновления на кнопке нажмите”

Вопросы похожие на “Компонент углового обновления на кнопке нажмите”

Больше похожих ответов на “Компонент углового обновления на кнопке нажмите” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования