Author -  Sai gowtham

Getting the URL parameters in Angular

In this tutorial, we are going to learn about how to get the URL parameters from a current route in Angular.

Getting the URL parameters

Consider, we have the following route in our angular routes array.

const routes: Routes = [
  { path: "product/:id", component: ProductComponent },
];

To access the id (url) parameter value from a ProductComponent, we can use the ActivatedRoute interface this.route.params observable.

product.component.ts
import { Component, OnInit } from "@angular/core";
import { ActivatedRoute } from "@angular/router";
@Component({
  selector: "app-product",
  templateUrl: './product.component.html',
  styleUrls: ['./product.component.css']
})
export class ProductComponent implements OnInit {

  constructor(private route: ActivatedRoute) {  }

  ngOnInit(){
    this.route.params.subscribe(params=>{
        let id = params['id'];    })
  }
}

Similarly, we can also use this.route.snapshot.params object.

product.component.ts
import { Component, OnInit } from "@angular/core";
import { ActivatedRoute } from "@angular/router";
@Component({
  selector: "app-product",
  templateUrl: './product.component.html',
  styleUrls: ['./product.component.css']
})
export class ProductComponent implements OnInit {

  constructor(private route: ActivatedRoute) {  }

  ngOnInit(){
     let id = this.route.snapshot.params['id'];
     console.log(id);  }
}

Note: The snapshot stores the URL params data at the time of component is initialized.

Css Tutorials & Demos

How rotate an image continuously in CSS

In this demo, we are going to learn about how to rotate an image continuously using the css animations.

How to create a Instagram login Page

In this demo, i will show you how to create a instagram login page using html and css.

How to create a pulse animation in CSS

In this demo, i will show you how to create a pulse animation using css.

Creating a snowfall animation using css and JavaScript

In this demo, i will show you how to create a snow fall animation using css and JavaScript.

Top Udemy Courses

JavaScript - The Complete Guide 2023 (Beginner + Advanced)
JavaScript - The Complete Guide 2023 (Beginner + Advanced)
116,648 students enrolled
52 hours of video content
$14.99 FROM UDEMY
React - The Complete Guide (incl Hooks, React Router, Redux)
React - The Complete Guide (incl Hooks, React Router, Redux)
631,582 students enrolled
49 hours of video content
$24.99 FROM UDEMY
Vue - The Complete Guide (w/ Router, Vuex, Composition API)
Vue - The Complete Guide (w/ Router, Vuex, Composition API)
203,937 students enrolled
31.5 hours of video content
$14.99 FROM UDEMY