I have the following configuration of routes:
{ loadChildren: './public#PublicModule', path: '' },
{ loadChildren: './home#HomeModule', path: 'home' },
{ path: '**', redirectTo: '/404' }
In some template (if it matters, let's call it xxx.component.html) I created a button to make some tests in my 404 route:
<button type="button" routerLink="unknown">Click here for unknown</button>
With this, I'm in route home/xxx
and after press the button, it works, I mean it goes to 404 page, however, the following is returned for me:
NavigationEnd {id: 2, url: "/home/unknown", urlAfterRedirects: "/404"}
But I was expecting to get the REAL previous route (home/xxx
), not the URL that I set in my button. Is there a way to achieve this?
PS1: I tried to use pairwise
, but it only works after call the 404 route 2 times.
My 404 component looks like:
export class NotFoundErrorComponent {
public previousUrl: string;
constructor(
private router: Router
) {
this.router.events
.filter((event: any) => event instanceof NavigationEnd)
.subscribe((event: any) => {
console.log(event);
// this.previousUrl = event.url;
});
}
...
}
This is what happens, step-by-step:
/home/xxx
/home/unknown
/404
, so it does that./404
and you check the previous URL which is/home/unknown
.I can think of 2 ways that this can be resolved:
**
to/404
, just set the 404 component to the path**
in the router. You will stay on/home/unknown
with the 404 component.Location
service from@angular/router
, and track the URL's visited.