我在Angular 2应用程序中创建了一些子路线。
export const AFTER_LOGIN_ROUTES:Routes=[
{path:'',component:LatestPositionComponent},
{path:'add',component:AddNewFriendComponent},
{path:'history',component:HistoryComponent}
];
当我访问http://localhost:4200/app/add或http://localhost:4200/app/history时,一切都很好。
但是在http://localhost:4200/app的情况下,我遇到了错误:
EXCEPTION: Uncaught (in promise): Error: Error in :0:0 caused by: Cannot read property 'firstChild' of null
Error: Error in :0:0 caused by: Cannot read property 'firstChild' of null
at ViewWrappedError.ZoneAwareError
有什么想法吗?
答案 0 :(得分:1)
如果您的路径为空{({1}})且没有子路线,请使用''
pathMatch: 'full'