Angular Get Parameters from URL Route Example
Today, i want to show you how to get parameters from url in angular 8 application. you will understand to angular get parameter from url in component file. we can easily get parameters from url route in angular 6, angular 7, angular 8, angular 9, angular 10, angular 11, angular 12, angular 13, angular 14, angular 15, angular 16 and angular 17 application.
We can get route url parameters using ActivatedRoute. ActivatedRoute provide all details of request. we can easily get query string parameters and params value. so you can easily use with your component file.
I will give two way to get current url parameters in angular 8 application. so let's see both example and you can easily use it.
I will give you simple example, so you can see your route may be define like as bellow route code. You can see your code might be:
Route
import { NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';
import { HomeComponent } from './home/home.component';
import { BlogComponent } from './blog/blog.component';
const routes: Routes = [
{
path: '',
component: HomeComponent
},
{
path: 'blog/:id',
component: BlogComponent
}
];
@NgModule({
imports: [RouterModule.forRoot(routes)],
exports: [RouterModule]
})
export class AppRoutingModule { }
Example 1
You can see we can get parameters from url in angular on this way:
BlogComponent
import { Component, OnInit } from '@angular/core';
import { ActivatedRoute } from '@angular/router';
@Component({
selector: 'app-blog',
templateUrl: './blog.component.html',
styleUrls: ['./blog.component.css']
})
export class BlogComponent implements OnInit {
constructor(private route: ActivatedRoute) { }
ngOnInit() {
let id = this.route.snapshot.params.id;
console.log(id);
}
}
URL:
http://localhost:4200/blog/2
Output:
2
Example 2
You can see we can get parameters from url in angular on this way:
BlogComponent
import { Component, OnInit } from '@angular/core';
import { ActivatedRoute } from '@angular/router';
@Component({
selector: 'app-blog',
templateUrl: './blog.component.html',
styleUrls: ['./blog.component.css']
})
export class BlogComponent implements OnInit {
constructor(private route: ActivatedRoute) { }
ngOnInit() {
this.route.paramMap.subscribe(params => {
var id = params.get('id');
console.log(id);
});
}
}
URL:
http://localhost:4200/blog/2
Output:
2
I hope it can help you...
Hardik Savani
I'm a full-stack developer, entrepreneur and owner of ItSolutionstuff.com. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.
We are Recommending you
- How to use Bootstrap Modal in Angular?
- Multiple File Upload in Angular Tutorial
- Angular Get Active Route URL Example
- Angular Image Upload Example Tutorial
- Angular Material Datepicker Example
- How to Get Query String from URL in Angular?
- Angular Http Post Request Example
- Angular Get Current Route Name Example
- How to Get Current URL in Angular?
- Angular 9/8 Routing and Nested Routing Tutorial With Example
- Angular Change Date Format in Component Example
- Angular Font Awesome - How to install font awesome in Angular 9/8?
- How to Create Custom Validators in Angular 9/8?
- How to Create New Component in Angular 8?