Can't reload/refresh active route

前端 未结 10 1869
遇见更好的自我
遇见更好的自我 2020-11-30 08:19

I have recently updated to the new RC3 and Router3alpha and it seems some things have changed.

I noticed that a click on the link of an active route does no longer r

10条回答
  •  情书的邮戳
    2020-11-30 09:11

    if (currentUrl.indexOf('/settings') > -1) {
        this.router.navigateByUrl('/communication').then(() => this.router.navigateByUrl('/settings'));
    } else {
        this.router.navigate(['/settings']);
    }
    

提交回复
热议问题