我正在标识组件中的上一个url,并且如果该URL在数组内,则需要更新变量的值,但是当其更改时,该值不会更新。
this._router.events.filter(e => e instanceof NavigationEnd)
.pairwise().subscribe((e) => {
e.forEach((page: any, id: any) => {
this.pages.filter(value => {
if (_.get(page, 'url', '').toLowerCase().includes(value.toLowerCase())) {
this.filterQuery = 'TEST';
}
});
});
});
filterQuery
的值未反映在html中。