I would like to pass value to another compoment ex: a name of country, and use it on the other compoment
I make the link like that and i want to send the value “France” to another compoment (via dataHere) :
JavaScript
x
6
1
<ion-card-header>
2
<ion-img class="logo-flag-greece" alt="mylogo" ></ion-img>
3
<span routerLink="/tabs/result" dataHere="France" class="text">France</span>
4
5
</ion-card-header>
6
How can i do that ?
Advertisement
Answer
in you html file
JavaScript
1
5
1
<ion-card-header>
2
<ion-img class="logo-flag-greece" alt="mylogo" ></ion-img>
3
<span (click)="show_result()" dataHere="France" class="text">France</span>
4
</ion-card-header>
5
and in your ts file
JavaScript
1
13
13
1
import {Router} from "@angular/router";
2
3
4
constructor(private router:Router){}
5
6
show_result(){
7
this.router.navigate(["/tabs/result"],{
8
queryParams: {
9
data: your_data
10
}
11
});
12
}
13
and in your result.page.ts file
JavaScript
1
11
11
1
import {ActivatedRoute} from "@angular/router";
2
3
4
constructor(private activatedRoute:ActivatedRoute){}
5
ionViewDidEnter(){
6
this.activatedRoute.queryParams.subscribe(params => {
7
this.country_data = params['data'];
8
});
9
10
}
11
But I don’t recommend this work around. Instead use “service”. Your can pass data from one page to another this way. Learn more about service in https://edupala.com/ionic-service/