Answers for "angular query params from input to get url"

5

get query params from url angular

import { ActivatedRoute } from '@angular/router';

export class ExampleComponent implements OnInit {

  constructor(private router: ActivatedRoute) { }

  ngOnInit() {
    this.router.queryParams.subscribe(res=>{
      console.log(res) //will give query params as an object
    })
  }

}
Posted by: Guest on August-19-2021
1

angular get url params

import { ActivatedRoute } from "@angular/router";

//import ActivatedRoute in constructor()
private $route: ActivatedRoute

// in ngOnInit() call
//myvar is the variable where you want to store your param
this.$route.params.forEach(param =>
	this.myvar = param['whatever your param name is']
);
Posted by: Guest on March-19-2020

Code answers related to "angular query params from input to get url"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language