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


TypeScript ionic-angular.NavController類代碼示例

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


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

示例1:

 this.authData.signupUser(this.signupForm.value.email, this.signupForm.value.password).then(() => {
   this.nav.setRoot(HomePage);
 }, (error) => {
開發者ID:aymenlaadhari,項目名稱:GerTunMobPactIonic,代碼行數:3,代碼來源:signup.ts

示例2: addNote

 public addNote(title: string, body: string): void {
   let modal = Modal.create(MyModal);
   this.nav.present(modal)
 }
開發者ID:jgw96,項目名稱:NoteAwesome,代碼行數:4,代碼來源:getting-started.ts

示例3:

 .then((res: any) => {
   this.navCtrl.pop(); //Go back to all passages page
 });
開發者ID:superMDguy,項目名稱:Passage-Master,代碼行數:3,代碼來源:passage.ts

示例4:

 .then(function (response) {
     console.debug('logged in', response);
     nav.setRoot(HomePage);
 })
開發者ID:dylanspurgin,項目名稱:heybro,代碼行數:4,代碼來源:login.ts

示例5: signInClick

 signInClick() {
     this.nav.push(Main);
 }
開發者ID:miaojingThink,項目名稱:ionicThinking,代碼行數:3,代碼來源:login.ts

示例6: requireAuth

 static requireAuth(): boolean {
   console.log("here route helper");
   const { auth, nav } = AuthRouteHelper;
   if (!auth.authenticated) this.nav.push(LoginPage);
   return auth.authenticated;
 }
開發者ID:GilbertoBotaro,項目名稱:MoneyLeash2,代碼行數:6,代碼來源:auth-route-helper.ts

示例7: goToImportWallet

 public goToImportWallet(coin): void {
   this.navCtrl.push(ImportWalletPage, { coin });
 }
開發者ID:bitpay,項目名稱:copay,代碼行數:3,代碼來源:select-currency.ts

示例8: gotoProfile

 gotoProfile(){
      this.nav.push(Profile);
  }
開發者ID:mueedahmed1,項目名稱:Practice-App,代碼行數:3,代碼來源:notification.ts

示例9: changePass

 changePass() {
   this.navCtrl.push(LoginPage)
 }
開發者ID:vaibhav-khot,項目名稱:jiffi1,代碼行數:3,代碼來源:change-pass.ts

示例10: gotocategory

  gotocategory(){
     this.nav.push(CategoriesPage);
 }
開發者ID:mueedahmed1,項目名稱:Practice-App,代碼行數:3,代碼來源:notification.ts


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