Tutorial

Angular Router: Defining Child Routes

Published on April 28, 2017
Default avatar

By Alligator.io

Angular Router: Defining Child Routes

While we believe that this content benefits our community, we have not yet thoroughly reviewed it. If you have any suggestions for improvements, please let us know by clicking the “report an issue“ button at the bottom of the tutorial.

It’s easy to create any kind of routing hierarchy in your Angular apps by using child routes in your router configurations.

The following covers routing for Angular 2+ apps.

All you need to define child routes is to add an array of additional route configuration objects as part of a children key in your parent configuration. Here’s an example configuration:

const routes: Routes = [
  { path: '', component: ParentComponent, children: [
    { path: 'red', component: ChildComponent },
    { path: 'blue', component: AnotherChildComponent }
  ] }
];

And don’t forget to add a router-outlet directive in the template of any parent component:

<router-outlet></router-outlet>

We such configuration, the available routes will be /, /red and /blue (e.g: http://localhost:4200/red)


Child routes can in turn also have child routes of their own:

const routes: Routes = [
  { path: '', component: ParentComponent, children: [
    { path: 'red', component: ChildComponent, children: [
      { path: 'knock-knock', component: SubChildComponent, children: [
        { path: 'neo', component: SubSubChildComponent }
      ] },
    ] },
    { path: 'blue', component: AnotherChildComponent }
  ] }
];

And now you’ll be able to go to the end of the rabbit hole by navigating to /red/knock-knock/neo 🐇

Routes Without Paths

You don’t have to necessarily have paths to all your routes. Let’s take this variation on the previous configuration for example:

const routes: Routes = [
  { path: '', component: ParentComponent, children: [
    { path: '', component: ChildComponent, children: [
      { path: 'knock-knock', component: SubChildComponent, children: [
        { path: 'neo', component: SubSubChildComponent }
      ] },
    ] },
    { path: 'blue', component: AnotherChildComponent }
  ] }
];

Notice how the route with the ChildComponent component doesn’t have a path. This means that the user will navigate directly to /knock-knock/neo, but ChildComponent will still be instantiated and its children will still be inserted into its router outlet.

Componentless Routes

It’s also possible to have a parent route that has no component:

const routes: Routes = [
  { path: '', component: ParentComponent, children: [
    { path: 'red', children: [
      { path: 'knock-knock', component: SubChildComponent, children: [
        { path: 'neo', component: SubSubChildComponent }
      ] },
    ] },
    { path: 'blue', component: AnotherChildComponent }
  ] }
];

With this configuration, the user can still navigate to /red/knock-knock/neo, but the SubChildComponent will be inserted in the ParentComponent’s router outlet instead.

This can be useful if our path provides us with data or params that we want available in in the rest of the chain of components or in sibling components. Let’s illustrate with an example:

const routes: Routes = [
  { path: '', component: ParentComponent, children: [
    { path: ':choice', children: [
      { path: 'neo', component: ChildComponent },
      { path: 'trinity', component: AnotherChildComponent }
    ] }
  ] }
];

With this configuration, both ChildComponent and AnotherChildComponent will have access to the choice param, and we didn’t have to involve another dummy component just to wrap both siblings.

Thanks for learning with the DigitalOcean Community. Check out our offerings for compute, storage, networking, and managed databases.

Learn more about us


About the authors
Default avatar
Alligator.io

author

Still looking for an answer?

Ask a questionSearch for more help

Was this helpful?
 
1 Comments


This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

When I navigate to sub-child routes, CSS styles are not applied to the sub-child components.

Try DigitalOcean for free

Click below to sign up and get $200 of credit to try our products over 60 days!

Sign up

Join the Tech Talk
Success! Thank you! Please check your email for further details.

Please complete your information!

Get our biweekly newsletter

Sign up for Infrastructure as a Newsletter.

Hollie's Hub for Good

Working on improving health and education, reducing inequality, and spurring economic growth? We'd like to help.

Become a contributor

Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.

Welcome to the developer cloud

DigitalOcean makes it simple to launch in the cloud and scale up as you grow — whether you're running one virtual machine or ten thousand.

Learn more
DigitalOcean Cloud Control Panel