如果在Angular 8中,子级的routerLink无法正常工作,可能是由于以下原因之一:
示例代码:
Go to Child Component
示例代码:
const routes: Routes = [
{ path: 'parent', component: ParentComponent,
children: [
{ path: 'child', component: ChildComponent }
]
}
];
示例代码:
const routes: Routes = [
{ path: 'parent', component: ParentComponent },
{ path: 'child', component: ChildComponent }
];
如果仍然无法解决问题,可以尝试重新启动Angular开发服务器,并检查浏览器控制台是否有任何错误消息。如果有错误消息,请根据错误消息进行进一步的故障排除。