At one moment of runtime my url looks like
http://localhost:4200/personal/51c50594-a95c-4a18-ac7b-b0521d67af96
I want to go to a page with only a different GUID
and different content.
http://localhost:4200/personal/{otherGuid}
This is not working:
this.router.navigate(['/personal',new_ guid]);
How can I achieve this in angular 2 ?