Мне нужно получить доступ к текущему URL-адресу с параметрами запроса с помощью активированного маршрутизатора.
constructor(private router: Router,
private route: ActivatedRoute) {
}
ngOnInit() {
this.router.events.pipe(
filter((event: RouterEvent) => event instanceof NavigationEnd && event.url.startsWith('/resources'))
).subscribe(() => {
console.log(this.route.snapshot.params)
})
}
Когда я получаю доступ к своему URL-адресу, http://localhost:4200/web/#/resources/sharepoint;siteId=docs;displayName=test;resourceId=4
this.route.snapshot.params
печатает пустой массив. Как мне получить доступ к параметру запроса "resourceId"?
Я пробовал this.route.snapshot.queryParams
, но он все равно печатает пустой массив.