我想在点击按钮后导航到某个页面。我需要强制重新加载页面。 一种方法是,在localstorage中添加一个标志,导航到该页面并根据该标志的值重新加载页面。 如果我这样做,
this.router.navigate(['./dashboard']);
location.reload()
或
location.reload()
this.router.navigate(['./dashboard']);
在当前页面中,这将导航但返回到同一页面,因为如果我没有错误,location.reload()会重新加载当前页面。
有没有办法收听location.reload()所以它会完成然后我可以导航到另一个页面?或者更好的方式?提前致谢