“Recarregar a página no TypeScript” Respostas de código

Recarregar a página no TypeScript

window.location.reload();
Worried Wolf

Página de atualização por datilografia angular

this.router.routeReuseStrategy.shouldReuseRoute = function(){
            return false;
         };
this.router.events.subscribe((evt) => {
            if (evt instanceof NavigationEnd) {
               // trick the Router into believing it's last link wasn't previously loaded
               this.router.navigated = false;
               // if you need to scroll back to top, here is the right place
               window.scrollTo(0, 0);
            }
        });
Excited Echidna

Respostas semelhantes a “Recarregar a página no TypeScript”

Perguntas semelhantes a “Recarregar a página no TypeScript”

Mais respostas relacionadas para “Recarregar a página no TypeScript” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código