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

перенаправить угловой

import { RoleComponent } from './role/role.component';
import { AppComponent } from './app.component';
import { NgModule }             from '@angular/core';
import { RouterModule, Routes } from '@angular/router';

const routes: Routes = [
  { path: '', redirectTo: '/AppComponent', pathMatch: 'full' },
  { path: 'role', component: RoleComponent },

];

@NgModule({
  imports: [ RouterModule.forRoot(routes) ],
  exports: [ RouterModule ]
})
export class AppRoutingModule {
  constructor(private router: Router)
}

functionOnWhichRedirectShouldHappen(){
  router.navigate(['/role']);
}
Wild Wildebeest

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

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

Как добавить изменения каждый раз, когда вы направляете перемещение на страницу в Angular

// Place import at the top
import { Router,NavigationStart} from '@angular/router';

//Place the code below inside your class
constructor(private router: Router){}

ngOnInit(){
   this.router.events.subscribe(event =>{
      if (event instanceof NavigationStart){
   		
      }
   })
}
Lively Lark

угловые маршруты

      
        content_copy
      
      goToItems() {
  this.router.navigate(['items'], { relativeTo: this.route });
}
    
Angry Angelfish

Угловой маршрут

            
      ng generate module app-routing --flat --module=app
    
Dark Dunlin

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

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

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

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

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