如何在Angular 2中重新加载相同URL的组件?

前端之家收集整理的这篇文章主要介绍了如何在Angular 2中重新加载相同URL的组件?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图通过使用router.navigate重新加载Angular 2中的相同URL,但它无法正常工作.
网址: http://localhost:3000/landing
场景:我在 http://localhost:3000/landing,现在我正在更改页面中应该重新加载页面的特定参数.

代码

let link = ['Landing'];
this.router.navigate(link);
导航到某个虚拟组件,然后导航到要重新加载的组件.
//第二个参数_skipLocationChange = true以避免后退按钮中的url
this.router.navigateByUrl('/DummyComponent',true);
this.router.navigate(["Landing"]);
原文链接:https://www.f2er.com/angularjs/141531.html

猜你在找的Angularjs相关文章