Query Parameter
Passing query parameter
From HTML
<a [routerLink]="['user', 10]"
[queryParams]="{searchStr: 'hesing'}">User</a>
From Component
onNavigate() {
this.router.navigate(['/'], {queryParams: {'searchStr': 'hesing'}});
}
Receiving route parameter
import { Component, OnDestroy } from '@angular/core';
import { Router } from "@angular/router";
import { Subscription } from "rxjs/Rx";
@Component({
moduleId: module.id,
selector: 'app-home-component',
template: `
<h1>
Home Component!
</h1>
<hr>
{{param}}
`
})
export class HomeComponent implements OnDestroy {
private subscription: Subscription;
param: string;
constructor(private router: Router) {
this.subscription = router.routerState.queryParams.subscribe(
(queryParam: any) => this.param = queryParam['searchStr']
);
}
ngOnDestroy() {
this.subscription.unsubscribe();
}
}
Last updated
Was this helpful?