本文整理汇总了TypeScript中ionic-angular.Nav类的典型用法代码示例。如果您正苦于以下问题:TypeScript Nav类的具体用法?TypeScript Nav怎么用?TypeScript Nav使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Nav类的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: updateNav
private updateNav(route: ActivatedRoute) {
if (route.component === IonicApp) {
route = route.firstChild;
if (!this.nav.getActive() || this.nav.getActive().component !== route.component) {
this.nav.setRoot(route.component, route.params, { animate: true, direction: 'forward' });
}
}
}
示例2:
this.userData.HasUserSeenTutorialAsync().then((hasSeen)=> {
if (!hasSeen) {
this.nav.push(TutorialPage)
}
if (!this.userData.HasUserRegistered) {
this.nav.push(SignupPage)
}
});
示例3: openPage
//Open page nav + tabs solution thanks to ionic-conference
//https://github.com/driftyco/ionic-conference-app/
openPage(page) {
if (page.component) {
if (page.tab) {
this.nav.setRoot(page.component, {tabIndex: page.tab});
} else {
this.nav.setRoot(page.component);
}
}
}
示例4: openPage
openPage(page) {
// Reset the content nav to have just this page
// we wouldn't want the back button to show in this scenario
this.nav.setRoot(page.component);
if(page.title== 'Logout'){
this.storage.set('user.ID',0);
this.nav.setRoot('LoginPage');
}
}
示例5: openPage
openPage(page) {
// close the menu when clicking a link from the menu
this.menu.close();
if (page.component == AccueilPage) {
//Principal page, it's root page
this.nav.setRoot(page.component);
} else {
// navigate to the new page if it is not the current page
this.nav.push(page.component);
}
}
示例6: openPage
/**
* openPage
*
* opens the selected page
* @param page
*/
openPage(page:PageInterface) {
// pushes selected page (except if its the HomePage, then it sets a new root)
if ((page.pageName == HomePage) && (this.nav.getActive().component != HomePage)) {
this.nav.setRoot(page.pageName, {fromSideMenu: true});
} else {
if (this.nav.getActive().component != page.pageName) {
this.nav.popToRoot();
this.nav.push(page.pageName);
}
}
}
示例7:
this.platform.ready().then(() => {
if (this.authService.getSession())
this.nav.setRoot(HomePage);
else
this.nav.setRoot(LoginPage);
// Okay, so the platform is ready and our plugins are available.
// Here you can do any higher level native things you might need.
StatusBar.styleDefault();
Splashscreen.hide();
});
示例8: viewSurvey
viewSurvey(survey, surveyProgress) {
this.nav.push(BeginSurveyPage, {
survey,
surveyProgress: this.surveyProgress,
inProgress: this.inProgress
});
}
示例9:
.subscribe(result => {
let companyData={
companyName:credentials.controls.CompanyName.value,
companyUsername:credentials.controls.Username.value,
companySecret:credentials.controls.SharedSecret.value,
reportSuites:result.report_suites,
researchedSuites:[]
}
//these things only need to live in temp storage
this.storageService.currentCompany=credentials.controls.CompanyName.value;
this.storageService.currentUsername=credentials.controls.Username.value;
this.storageService.currentSharedSecret=credentials.controls.SharedSecret.value;
//here is where we write to long-term and short-term storage
if(this.storageService.companies && !this.storageService.companies.includes(credentials.controls.CompanyName.value)){
//only add the company to the companies array if it doesn't yet exist
this.storageService.addToStorageArray("companies",credentials.controls.CompanyName.value);
if(this.DTMenabled===true){ _satellite.data.customVars["api type"]="company login:refresh"}
}else{
if(this.DTMenabled===true){_satellite.data.customVars["api type"]="company login:new"}
}
this.storageService.addToStorageComplex("companyData",credentials.controls.CompanyName.value,companyData)
this.storageService.addToStorageSimple("currentCompany",credentials.controls.CompanyName.value)
if(this.DTMenabled===true){_satellite.track("api success")}
this.events.publish('showPage:RSList', true);
loading.dismiss();
this.nav.setRoot(TabsPage, { index: '1' });
}, error => {
示例10:
this.auth.getUserData().subscribe(data => {
if (!this.isAppInitialized) {
console.log(data);
this.nav.setRoot(BulletinBoardPage);
this.isAppInitialized = true;
}
}, err => {