Angular 9 - 导航开始时获取目的地 url
Angular 9 - get destination url when navigation starts
我正在使用 Angular9。我需要在导航开始后立即知道目的地 url。
我想做这样的事情:
constructor(router: Router) {
this.router = router;
}
this.router.events.pipe(
filter(event => event instanceOf NavigationStart),
map(event => {
//get somehow the destination url of this navigation just started
})
).subscribe()
有没有办法仅通过使用 Angular 路由器 来实现?
你可以使用
this.router.events.pipe(
filter((e: Event): e is NavigationStart => e instanceof NavigationStart)
).subscribe((e: NavigationStart) => {
e.url // contains the url you will go to
});
我正在使用 Angular9。我需要在导航开始后立即知道目的地 url。 我想做这样的事情:
constructor(router: Router) {
this.router = router;
}
this.router.events.pipe(
filter(event => event instanceOf NavigationStart),
map(event => {
//get somehow the destination url of this navigation just started
})
).subscribe()
有没有办法仅通过使用 Angular 路由器 来实现?
你可以使用
this.router.events.pipe(
filter((e: Event): e is NavigationStart => e instanceof NavigationStart)
).subscribe((e: NavigationStart) => {
e.url // contains the url you will go to
});