I tried passing parameters in push method of ionic2. like this
this.nav.push(SecondPage, { thing1: data1, thing2: data2 });
but is ther
Use popTo() instead of pop()
popTo()
pop()
popTo() has params? parameter where you can pass in your paramaters like so:
params?
this.nav.popTo(SecondPage, { thing1: data1, thing2: data2 });