Angular Route Params

In this tutorial, we learn how to pass route params (Route Parameters) to the Route in Angular. First, let us look at how to define the route, which accepts the parameter.  We then learn how to pass the angular route params to the route using the routerLink directive. Finally, we learn how to retrieve the parameters using the ActivatedRoute Service.  The parameters can be retrieved by either reading the snapshot property or by subscribing to the paramMap or params observation.

What are Angular Route Parameters?

There are many scenarios, where you need to pass parameters to the route. For example, to navigate to the product detail view, we need to pass the id of the Product, so that component can retrieve it and display it to the user. This is where we use the Route Parameters (or Angular Route Params)

The Route Parameters are a dynamic part of the Route and essential in determining the route.

For example, consider the following route

The above route match only if the URL is /product

To retrieve the product details, our URL should look something like

/product/1
/product/2

Where the second URL segment ( 1 and 2 ) is the id of the product. The id is dynamic and changes as per the selected Product. To handle such a scenario angular router allows us to include route parameters, where we can send any dynamic value for a URL segment

How to Pass Parameters to Angular Route

Route Params Example Application

Let us build on the Application we built in the Angular Routing tutorial

The application contains the Product and Product Details page. The Product detail page displays the product detail based on the Product Id passed in the URL. Since the Product Id is dynamic, we will pass it as a Route Parameter.

You can view the code from the stackblitz

Defining the Route

Our first task is to create a Route with a dynamic Parameter. We know how to define Route from the Routing & Navigation tutorial

We can define parameters by adding a forward slash followed colon and a placeholder (id) as shown below

app.module.ts

Where id is the dynamic part of the Route.

Now above path matches the URLs /product/1 , /product/2, etc.

If you have more than one parameter, then you can extend it by adding one more forward slash followed colon and a placeholder

The name id, id1 & id2 are placeholders for parameters. We will use them while retrieving the values of the parameters.

Defining the Navigation

We, now need to provide both path and the route parameter routerLink directive.

This is done by adding the id of the product as the second element to the routerLink parameters array as shown below

Which translates to the URL /product/2

OR

product.component.ts

Which, dynamically takes the value of the id from the product object.

You can also use the navigate method of the router object

Retrieve the parameter in the component

Finally, our component needs to extract the route parameter from the URL

This is done via the ActivatedRoute service from the angular router module to get the parameter value

ActviatedRoute

The ActivatedRoute is a service, which keeps track of the currently activated route associated with the loaded Component.

To use ActivatedRoute, we need to import it into our component

product-detail.component.ts

Then inject it into the component using dependency injection

product-detail.component.ts

There are two properties that ActviatedRoute routes provide, which contain the Route Parameter.

  1. ParamMap
  2. Params

ParamMap

The Angular adds the map of all the route parameters in the ParamMap object, which can be accessed from the ActivatedRoute service

The ParamMap has three methods, which makes it easier to work with the route parameters.

get method retrieves the value of the given parameter.

getAll method retrieves all parameters

has method returns true if the ParamMap contains a given parameter else false

Params

The Angular ActviatedRoute also maintains the Route Parameters in the Params array. The Params array is a list of parameter values, indexed by name.

Angular announced that it will deprecate the Params but it has not done so. Params and QueryParams are not deprecated.

Reading the Route Parameters

There are two ways in which you can use the ActivatedRoute to get the parameter value from the ParamMap object.

  1. Using the Snapshot property of the ActivatedRoute
  2. Subscribing to the paramMap or params observable property of the ActivatedRoute

Using Snapshot

The snapshot property returns the current value of the route. It does not contain any observable. Hence if the value changes after you retrieve the values, you will not be notified of it. The snapshot contains both paramMap & params array. You can use any of them to read the value of id.

The following code reads the value from the paramMap object.

Code to read the router parameter from the params array.

Using Observable

The ActivatedRoute also contains the paramMap & params observable. We can subscribe to it and listen for changes. The paramMap observable emits the paramMap object, while the params observable emits the params array.

The following code subscribes to the paramMap observable. We use the get method to read the value of id.

The code to subscribe to the params observable

Which one to use? snapshot or observable

We usually retrieve the value of the parameter in the ngOninit life cycle hook, when the component is initialized.

When the user navigates to the component again, and if the component is already loaded then, Angular does not create the new component but reuses the existing instance. In such circumstances, the ngOnInit method of the component is not called again. Hence you need a way to get the value of the parameter.

By subscribing to the paramMap observable (or to the params observable), you will get a notification when the value changes. Hence you can retrieve the latest value of the parameter and update the component accordingly.

The above difference is explained in our next tutorial Angular child routes tutorial.

Passing Parameters to Route: Example

Here is the complete list of codes.

app.component.ts

The routerlink directive code creates the HTML link and binds the click event of the link to a route. Clicking on the Product link will direct us to the product route. The routes are defined in the app.module.

product.ts

product.service.ts

product.component.ts

In the Product Component, we have added product.productID as the second argument to the routerLink parameters array.

product-detail.component.ts

In the ProductDetailComponent, we have imported router and ActivatedRoute from the angular router module

In the constructor, we inject the ActivatedRoute, Router service along with ProductService

Finally, we use ngOninit life cycle hook to retrieve the value of the id parameter and use that value to retrieve the details of the product.

Note that, there are two ways, by which you can retrieve the data.

Using snapshot

Subscribing to paramMap observable

We used the snapshot method to retrieve the parameter in the ProductDetailcomponet.ts. To Subscribe to params remove the ngOnInit and replace it with the following code

We recommend you use the subscribe method as it offers the benefit of responding to the parameter changes dynamically.

app.module.ts

The route to the Product Detail Component

contact.component.ts

home.component.ts

error.component.ts

Passing data to Routes using Angular Route Parameters

ActivatedRoute

The ActivatedRoute service has a great deal of useful information including:

url: This property returns an array of Url Segment objects, each of which describes a single segment in the URL that matched the current route.

params: This property returns a Params object, which describes the URL parameters, indexed by name.

queryParams: This property returns a Params object, which describes the URL query parameters, indexed by name.

fragment: This property returns a string containing the URL fragment.

Snapshot: The initial snapshot of this route

data: An Observable that contains the data object provided for the route

Component: The component of the route. It’s a constant

outlet: The name of the RouterOutlet used to render the route. For an unnamed outlet, the outlet name is primary.

routeConfig: The route configuration used for the route that contains the origin path.

parent: an ActivatedRoute that contains the information from the parent route when using child routes.

firstChild: contains the first ActivatedRoute in the list of child routes.

children: contains all the child routes activated under the current route

pathFromRoot: The path from the root of the router state tree to this route

Summary

We looked at how to pass parameters or data to the Route. The parameters are passed to the route by using routerLink parameters in the routerLink directive. We retrieve the parameters from ActivatedRoute service by reading the paramMap collection of the snapshot object or by subscribing to the paramMap observable.

12 thoughts on “Angular Route Params”

  1. What “Use this option if you expect the value of the parameter to change over time.”

    Lets say “http://myapp/products/1” is the URL and user changes to “http://myapp/products/2” in the browser. If paramap is not used, this new URL would not be picked up by the application).

Leave a Comment

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Scroll to Top