angular2路由path不能传递参数的问题

前端之家收集整理的这篇文章主要介绍了angular2路由path不能传递参数的问题前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

ts文件代码

{ path: 'directory/:person',component: DirectoryComponent },

导致页面不能跳转


解决办法:不在path中传递参数,在routerLink传递参数即可解决

<a [routerLink]="['/directory',person]">Directory</a>


参考资料:

http://www.jianshu.com/p/02d5d6da0766

原文链接:/angularjs/145818.html

猜你在找的Angularjs相关文章