What is Route Params in Angular2?

What is Route Params in Angular 2?

The route parameter is used to map given URL's parameters based on the rout URLs and it is an optional parameters for that route.

Firstly will need to import from '@angular2/router' in the components file.

Syntax:-
params : {[key: string]: string}

Example as,
import { Component } from '@angular/core';
import { ActivatedRoute } from '@angular/router';

@Component({
    selector: 'user',
    templateUrl: './user.component.html',
    styleUrls: ['./user.component.css'],
    providers: [UserService, AppGlobals]
})

export class UserComponent {
    private userid: string;
    private subUser;
    constructor(private _route: ActivatedRoute) {
    }

    ngOnInit() {
        this.subUser = this._route.params.subscribe(params => {
            this.userid = params['userid'];
        });
    }

    ngOnDestroy() {
        this.subUser.subscribe();
    }
}

Angular2 - Routing Concepts

What is Routing in Angular 2? What is Routes?
What is Router Imports? What is RouterOutlet?
Is it possible to have a multiple router-outlet in the same template? What is RouterLink?

ANIL SINGH

Anil Singh is an author, tech blogger, and software programmer. Book writing, tech blogging is something do extra and Anil love doing it. For more detail, kindly refer to this link..

My Tech Blog - https://www.code-sample.com/
My Books - Book 1 and Book 2

www.code-sample.com/. Powered by Blogger.
^