记一下,网上没找到方法 自己搞了好久 通过跳转到别的界面在跳回来的方式进行实现
//再次点击刷新界面
if (this.router.url == item.url) {
this.router.navigateByUrl("/app/home").then(() => {
this.router.navigate([item.url]);
});
} else {
this.router.navigate([item.url]);
}