“reinicie o componente angular” Respostas de código

reinicie o componente angular

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

reinicie o componente angular

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

Respostas semelhantes a “reinicie o componente angular”

Perguntas semelhantes a “reinicie o componente angular”

Mais respostas relacionadas para “reinicie o componente angular” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código