Scenario:
I have an Ionic 3 Web app, which opens for this link http://localhost:8100. I need to pass a value with the link (i.e http://localhost:8100/index.html?cell=1234567890) and the ionic app while loading the app, fetches the cell value.
What i have done:
Seriously I have no idea, where to start. I used NavParams
like this,
this.cell = this.navParams.get('cell');
and opened the app like http://localhost:8100/index.html?cell=1234567890, the app is opened successfully, but i'm getting an undefined value.
Any advice would be appreciated.