In my little example here everything works fine with the following paths:
but if I use repeated query parameters to pass an array of values routerLinkActive brakes:
https://angular-d7eqku.stackblitz.io/path1?param1=1¶m1=2
Is it a bug? How can I bypass it? Tested it in Angular 5/6.
Update: I updated my example a bit to show why I want to pass an array of parameters exactly this way (not passing it as one parameter with multiple values) and how I use it.
Update2: After deletion of [queryParamsHandling]="'preserve'" it starts working, so the question can be narrowed to: Why routerLinkActive doesn't work with repeated parameters when queryParamsHandling="preserve".
To pass an array to query params you probably have to use
,
,so the link should look like this:https://angular-d7eqku.stackblitz.io/path1?param1=1,2
route snapshot (ActivatedRoute.snapshot) will look like this:
UPDATE:
Alright, misunderstood the question. So if you change your app.component.html to the following code - it will work:
Here is repro navigate to
path1?param1=1¶m1=3
and it will display the values and highlight the active url