Uncaught (in promise): Error: Cannot match any routes. URL Segment: Angular

后端 未结 2 530
迷失自我
迷失自我 2021-01-28 17:37

I am new to Angular. I am using Angular 7 and doing a simple routing. After Login page, I want to display a home page. Login is a part of app-root component and in

2条回答
  •  情深已故
    2021-01-28 18:22

    you must use this code :

    this._router.navigate(['/dashboard/home']);
    

    if it doesn't work, in "dashboard-routing.modul.ts" file use path: ' ', instead of
    path: 'dashboard',.

提交回复
热议问题