更新全局变量的值

时间:2019-04-29 21:00:27

标签: javascript angular

我正在标识组件中的上一个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中。

0 个答案:

没有答案