“Obtenha URL anterior angular” Respostas de código

Angular como verificar a rota anterior

//Update angular 6+
//The events.filter gives error because filter is not part of events, so change the code to

import { filter, pairwise } from 'rxjs/operators';

this.router.events
.pipe(filter((evt: any) => evt instanceof RoutesRecognized), pairwise())
.subscribe((events: RoutesRecognized[]) => {
  console.log('previous url', events[0].urlAfterRedirects);
  console.log('current url', events[1].urlAfterRedirects);
});
Rich Ratel

Obtenha URL anterior angular

  // private router: Router//inject
    this.router.events
    .pipe( filter(        (evt:any)=>evt instanceof RoutesRecognized),pairwise())
    .subscribe((events: RoutesRecognized[]) =>{        
        console.log('previous',events[0].urlAfterRedirects);//previous url
        console.log('current url',events[1].urlAfterRedirects);//current url
      }    );
Alive Angelfish

Respostas semelhantes a “Obtenha URL anterior angular”

Perguntas semelhantes a “Obtenha URL anterior angular”

Mais respostas relacionadas para “Obtenha URL anterior angular” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código