Angular : Manual redirect to route

后端 未结 8 1181
佛祖请我去吃肉
佛祖请我去吃肉 2020-12-12 19:50

I just recently started using angular 4 instead of angular.js 1.

I have followed the heroes tutorial to learn about the fundamentals of angular 4 and I am currently

8条回答
  •  南笙
    南笙 (楼主)
    2020-12-12 20:41

    Redirect to another page using function on component.ts file ##

       componene.ts-
       ------------------------------------------------------------------------  
       import {Router} from '@angular/router';
    
       constructor(private router: Router) {}
    
       OnClickFunction()
       {
            this.router.navigate(['/home']);
       }
    
      component.html-
      ----------------------------------------------------------------------------------- 
    
         

提交回复
热议问题