Send
constructor(public router: Router}
this.router.navigate(['action'], { state: { data: 'bar' } });
Receive:
console.log(history.state);
//output
{data: "234", navigationId: 3}
Send
constructor(public router: Router}
this.router.navigate(['action'], { state: { data: 'bar' } });
Receive:
console.log(history.state);
//output
{data: "234", navigationId: 3}