Does anyone know how I can require navParams?
Example: If I have a list of companies, and I have a click function:
itemTapped(event, item) {
this.navCtrl.push(‘CompanyDetails’, {
item: item
});
}
If I do an edit and it refreshes the page, I keep getting an error saying it cannot read property XXX of undefined.
So, how can I force the navParams have data, if not go to the parent view.