i’m trying to pass parameters to a ionic page from a landing page making a setRoot to the new page:
this.navCtrl.setRoot(“visor”, { “config”: “map=12,visor=1” });
the new page is defined like this: @IonicPage({ name: ‘visor’, segment: ‘visor/:config’ })
the problem is that when the visor page loads the url looks like http://localhost:8100/#/visor/map%3D1%2Cvisor%3D0, the url is encoded by Ionic.
Is posible to avoid the param encode?