“Угловой роутер роутер” Ответ

Угловая [RouterLink]

      
        content_copy
      
      <a [routerLink]="['/user/bob']" [queryParams]="{debug: true}" fragment="education">
  link to user component
</a>
    
Rich Ratel

NG Router Link

<a [routerLink]="['/user/bob']" [queryParams]="{debug: true}" fragment="education">
  link to user component
</a>
GutoTrosla

Угловая навигация с использованием компонента

import {Router} from '@angular/router'; // import router from angular router

export class Component{ 				// Example component.. 
	constructor(private route:Router){} 
  
  	go(){
		this.route.navigate(['/page']); // navigate to other page
	}
}
dr3am_warri0r

Угловой маршрутизатор перемещается

// Here’s a basic example using the navigate method:

goPlaces() {
  this.router.navigate(['/', 'page-name']);
}

/*
I hope it will help you.
Namaste
*/
Ankur

Угловой роутер роутер

<router-outlet
  (activate)='onActivate($event)'
  (deactivate)='onDeactivate($event)'
  (attach)='onAttach($event)'
  (detach)='onDetach($event)'></router-outlet>
Sleepy Squirrel

Ответы похожие на “Угловой роутер роутер”

Вопросы похожие на “Угловой роутер роутер”

Больше похожих ответов на “Угловой роутер роутер” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования