當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript Nav.setRoot方法代碼示例

本文整理匯總了TypeScript中ionic-angular.Nav.setRoot方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript Nav.setRoot方法的具體用法?TypeScript Nav.setRoot怎麽用?TypeScript Nav.setRoot使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在ionic-angular.Nav的用法示例。


在下文中一共展示了Nav.setRoot方法的10個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: 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);
         }
     }
 }
開發者ID:epeuva,項目名稱:myAngularCampIonic2app,代碼行數:11,代碼來源:app.ts

示例2: 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');
   }
 }
開發者ID:stojancelevski,項目名稱:pedometerv2,代碼行數:9,代碼來源:app.component.ts

示例3:

    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();
    });
開發者ID:eduardorost,項目名稱:meutransporte,代碼行數:11,代碼來源:app.component.ts

示例4:

        (user) => {
           if (user) {
               console.log(user);

               this._navController.setRoot(EventsPage);
           }
        }
開發者ID:marenwoodruff,項目名稱:m2,代碼行數:7,代碼來源:signup.component.ts

示例5: if

 this.storage.get('userLoginInfo').then((userLoginInfo) => {
     if (userLoginInfo != null) {
       let detModal =this.modalCtrl.create('CartPage');
       detModal.onDidDismiss((response) => {
         if(response!=undefined){
           if(response.type=='bulk'){
             this.navCtrl.setRoot('BulkPage',response);
           }else if(response.type=='checkout'){
             this.navCtrl.setRoot('CheckoutPage',response);
           }
           else if(response.type=='normal'){
             this.navCtrl.setRoot('NormalPage',response);
           }else{
             this.navCtrl.setRoot('HomePage')
           }
         }else{
             this.storage.get('cartData').then((data) => {
             this.cartCount = data.length;
           });
         }
       });
       detModal.present();
     }else{
       this.navCtrl.setRoot('LoginPage');
     }
 })
開發者ID:GunaUI,項目名稱:Pure,代碼行數:26,代碼來源:home.ts

示例6: if

 handler : () => {
   this.dialogOpened = false;
   alert.dismiss();
   if(type == 'exit')
   {
     this.nav.setRoot(MPinPage);
     this.exitApp();
   }
   else if(type == 'logout')
   {
     localStorage.removeItem('username');
     localStorage.removeItem('password');
     localStorage.removeItem('MPin');
     this.nav.setRoot(LoginPage);
   }
 }
開發者ID:tejit2004,項目名稱:app,代碼行數:16,代碼來源:app.ts

示例7: openPage

 openPage(page) {
   // close the menu when clicking a link from the menu
   this.menu.close();
   // navigate to the new page if it is not the current page
   //let nav = this.app.getComponent('nav');
   this.nav.setRoot(page.component);
 }
開發者ID:smukov,項目名稱:AvI,代碼行數:7,代碼來源:app.component.ts

示例8: openPage

 openPage(page, logOut) {
   // Reset the content nav to have just this page
   // we wouldn't want the back button to show in this scenario
   if (logOut)
     this.auth.logoutUser();
   this.nav.setRoot(page.component);
 }
開發者ID:aviel829,項目名稱:aroume,代碼行數:7,代碼來源:app.component.ts

示例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 => {
開發者ID:jkunz,項目名稱:pocketSDR,代碼行數:30,代碼來源:company-login.ts

示例10:

 this.auth.getUserData().subscribe(data => {
   if (!this.isAppInitialized) {
     console.log(data);
     this.nav.setRoot(BulletinBoardPage);
     this.isAppInitialized = true;
   }
 }, err => {
開發者ID:lgmbarata,項目名稱:eCondominio,代碼行數:7,代碼來源:app.ts


注:本文中的ionic-angular.Nav.setRoot方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。