router.navigate is not working (Angular6, lazy loading)

前端 未结 3 2344
时光说笑
时光说笑 2021-02-20 11:48

I\'m a newbie for Angular 4+ (currently using v.6). I\'ve been trying to use this.router.navigate([\'/landing\']) function to redirect from login component to l

3条回答
  •  孤独总比滥情好
    2021-02-20 12:34

    I faced similar issue, how I resolved it:

    In Component.ts

    constructor(private router: Router, private route: ActivatedRoute){}
    
    this.router.navigate(['../landing'], {relativeTo: this.route})
    

    try this and let me know if it helps!!!

提交回复
热议问题