当前位置: 首页>>代码示例>>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;未经允许,请勿转载。