this one i got for angular site
import { Component, OnInit } from '@angular/core';
import { ActivatedRoute } from '@angular/router';
import { Observable } from 'rxjs/Observable';
import 'rxjs/add/operator/map';
@Component({
template: `
<p>Dashboard</p>
<p>Session ID: {{ sessionId | async }}</p>
`
})
export class AdminDashboardComponent implements OnInit {
constructor(private route: ActivatedRoute) {}
ngOnInit() {
//read query param
this.route
.queryParamMap
.map(params => console.log(params.get('thing')););
//read param value
this.route
.paramMap
.map((params: ParamMap) =>
console.log(params.get('id')));
}
}
Read Routinh here : https://angular.io/guide/router#!#optional-route-parameters
try like this
const appRoutes: Routes = [
{ path: 'do-something/:id', component: DoSomethingComponent, name: 'Details'}];
now navigation like
this.router.navigate( [
'Details', { id: 'idvalue', param1: 'value1'
}]);//this you can try from code
this match
do-something/idvalue?param1=value1. //this try from browser
read query param like this
ngOnInit() {
// Capture the access token and code
this.route
.queryParams
.subscribe(params => {
let thing = params['thing'];
});
}
or try this
(new URL(location)).searchParams.get("parameter_name")