How to add fragment before query params in angular 8

Viewed 764

I want to navigate from component to other route with fragment and query parameters. So here want to add fragement before query params like as below

http://localhost:4200/home#example?fromDate=2020-03-19&toDate=2020-03-22

I have added query params but unable to add fragment before query parameters. I used NavigationExtras it's addding fragment after query params.

1 Answers

Have you tried,

this.router.navigate(['/home'], { fragment: 'example', queryParams: { page: 1, next: 2 } });

or naive way,

this.router.navigate(['/home#example'], { queryParams: { page: 1, next: 2 } });
Related