我试图通过使用router.navigate重新加载Angular 2中的相同URL,但它无法正常工作.
网址: http://localhost:3000/landing
场景:我在 http://localhost:3000/landing,现在我正在更改页面中应该重新加载页面的特定参数.
网址: http://localhost:3000/landing
场景:我在 http://localhost:3000/landing,现在我正在更改页面中应该重新加载页面的特定参数.
代码:
let link = ['Landing']; this.router.navigate(link);
导航到某个虚拟组件,然后导航到要重新加载的组件.
//第二个参数_skipLocationChange = true以避免后退按钮中的url
原文链接:https://www.f2er.com/angularjs/141531.html//第二个参数_skipLocationChange = true以避免后退按钮中的url
this.router.navigateByUrl('/DummyComponent',true); this.router.navigate(["Landing"]);