Hi all, I’m starting out on creating my first app using Ionic 2 and through a lot of trial and error have got to a point where no number of Google searching can find anything to help.
I’m trying to pass some NavParams to a tab. The NavParams are available in the parent tabs page:
@Page({
templateUrl: 'build/pages/tabs/tabs.html'
})
export class TabsPage {
constructor(params: NavParams) {
this.params = params;
console.log(this.params); // returns NavParams {data: Object}
// this tells the tabs component which Pages should be each tab's root Page
this.tab1Root = Tab1;
this.tab2Root = Tab2;
this.tab3Root = Tab3;
}
}
But I cannot seem to get the NavParams within a tab itself:
Any help would be greatly appreciated! I’m just not entirely sure how to pass the params from the tabs page to the tab itself or somehow request a param from the tab parent.
Yeah I think my approach is wrong. To give you some context I’m passing an id through to the TabsPage navParams to use to query an SQL table and display results on Tab1.
So this.params = params; = 1 on the TabsPage but then I’m not sure how to access it on the tab1 page. Essentially I need to do something like this.parent.params.
The only way I’ve been able to do it is to add it into the HTML:
Hi @lawlesscreation
Did you get any solution? I also like to parse paremeter like you but on my Tab1 always got null.
How do you make this work?
Thank you
I only had to pass through a database id so I just hide the value in an invisible div outside the tab page. Dirty but worked until there’s a better solution.
An easier way of doing things is to create an injectable params service as below. You can use this to pass params directly to a tab or multiple tabs rather than using the NavController. This is only meant to be a temporary solution until the issue is resolved.
// Require framework
import {Injectable} from "angular2/core";
@Injectable()
export class Params {
public params;
constructor () {
this.params = {};
}
}
Could you please provide to us more example code how to apply an injectable params service ?
or
In my case from login page -> success -> get user data -> sent user params to tab page.
In ionic1 : I use $rootScope to put user data and use it every page.
How to do that in ionic2 ?
Thanks in advance.