“Página de recarga en TypeScript” Código de respuesta

Página de recarga en TypeScript

window.location.reload();
Worried Wolf

Página de actualización de mecanografiado 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

Respuestas similares a “Página de recarga en TypeScript”

Preguntas similares a “Página de recarga en TypeScript”

Más respuestas relacionadas con “Página de recarga en TypeScript” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código