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

Как обновить страницу Angular

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

Обновление тока компонента угловой

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

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

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

Перезагрузить субкомпонентный угловой

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

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

DeleteEmployee(id:number)
  {
    this.employeeService.deleteEmployee(id)
    .subscribe( 
      (data) =>{
        console.log(data);
        this.ngOnInit();
      }),
      err => {
        console.log("Error");
      }   
  }
Famous Fly

Ответы похожие на “Как перезагрузить компонент в угловой”

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

Больше похожих ответов на “Как перезагрузить компонент в угловой” по TypeScript

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

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