是否有一种方法可以处理使用时未过滤的路由器事件?
我想在未过滤时进行处理,但是我不知道该怎么办。
this.router.events
.filter(e => e instanceof NavigationStart)
.pairwise()
.subscribe((event: any[]) => {
// If...
}
);
// I want to Else { }
谢谢。
答案 0 :(得分:0)
尝试一下,我认为您忘记了管道方法(或使用旧版本的rxjs):
this.router.events.pipe(
filter(e => e instanceof NavigationStart),
pairwise()
)
.subscribe((event: any[]) => {
// If {}
// I want to Else { }
});