ts文件中代码为
{ path: 'directory/:person',component: DirectoryComponent },
导致页面不能跳转。
解决办法:不在path中传递参数,在routerLink传递参数即可解决
<a [routerLink]="['/directory',person]">Directory</a>
参考资料:
http://www.jianshu.com/p/02d5d6da0766