“trasy w kątowych” Kod odpowiedzi

Wygeneruj moduł z routingiem w kątowym

ng g m [ModuleName] --routing
Perfect Panther

Angular nawigacja za pomocą komponentu

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

trasy kątowe

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

Trasa kątowa

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

trasy w kątowych

//app-routing.module.ts file
const routes: Routes = [
 
  // for simple path
  {
        path:'admin',component:UserHomeComponent
  }
  //child parent context
  {
    path:'',component:UserSideComponent,
    children:[
      {
        path:'home',component:UserHomeComponent
      },
      {
        path:'checkout',component:CheckoutComponent
      }]
  },
  
  
 ]
Farwa Miraj

Odpowiedzi podobne do “trasy w kątowych”

Pytania podobne do “trasy w kątowych”

Więcej pokrewnych odpowiedzi na “trasy w kątowych” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu