Why the output in undefined when i pass data from one page to another in ionic 3
Answers
Answered by
2
export class Page2 {
value2:any = {
item_id=""
}
value:any;
constructor(public navCtrl: NavController, public navParams: NavParams) {
this.value = navParams.get('item_id');
}
Hope this helps ☺️☺️☺️
Similar questions