Im using this:
import { HttpParams } from '@angular/common/http';
let params = new HttpParams();
params.append('newOrdNum','123');
But this is not working, i dont append param in url. Any suggestion?
Im using this:
import { HttpParams } from '@angular/common/http';
let params = new HttpParams();
params.append('newOrdNum','123');
But this is not working, i dont append param in url. Any suggestion?
You should use Router
module. check this doc: https://angular.io/guide/router
You need import these modules:
import { Router, ActivatedRoute, ParamMap } from '@angular/router';
this.router.navigate(['.'], { relativeTo: this.route, queryParams: { 'a': 'b' }, queryParamsHandling: 'merge', skipLocationChange: true});
router: Router route: ActivatedRoute
This could be achieved by using the
Router
class:Using a component:
For more info check this book and the angular Router API