Navigate to another page with a button in angular 2

前端 未结 7 1050
天命终不由人
天命终不由人 2020-12-12 18:00

I am trying to navigate to a another page by clicking a button but it fails to work. What could be the problem. I am now learning angular 2 and it\'s a bit tough for me now.

7条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-12 18:10

     
    
    
    import { Router } from '@angular/router';
    
    btnClick= function () {
            this.router.navigate(['/user']);
    };
    

提交回复
热议问题