Answers for "setting hhtp params angular"

0

angular url parameter

// example url: details?id=2

constructor(private activatedRoute: ActivatedRoute) {
  this.activatedRoute.queryParams.subscribe(params => {
        console.log(params); // Prints {id: "2"}
    });
}
Posted by: Guest on February-24-2021

Code answers related to "TypeScript"

Browse Popular Code Answers by Language