当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript Config.set方法代码示例

本文整理汇总了TypeScript中ionic-angular.Config.set方法的典型用法代码示例。如果您正苦于以下问题:TypeScript Config.set方法的具体用法?TypeScript Config.set怎么用?TypeScript Config.set使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在ionic-angular.Config的用法示例。


在下文中一共展示了Config.set方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1:

 .then(data => {
   this.response = data;
   if(this.response.hash){
     this.config.set('HASH', this.response.hash);
     this.local.set('HASH', this.response.hash);
     this.local.set('AUTHORIZED', true);
     this.nav.setRoot(LeaderPage);
   } else {
     this.codeIncorrect('Error.', this.response.error.message);    
   }
 });
开发者ID:eongoo,项目名称:leader,代码行数:11,代码来源:login.ts

示例2: if

 .then(data => {
   this.response = data;
   if(this.response.hash) {
     this.config.set('HASH', this.response.hash);
     this.local.set('HASH', this.response.hash);
     this.local.set('AUTHORIZED', true);
     if(this.response.is_homestay) {
       this.config.set('HOMESTAY', true);
       this.config.set('MENTOR', false);
       this.local.set('HOMESTAY', true);
       this.local.set('MENTOR', false);
       this.nav.setRoot(HomestayPage);
     } else {
       this.config.set('HOMESTAY', false);
       this.config.set('MENTOR', true);
       this.local.set('HOMESTAY', false);
       this.local.set('MENTOR', true);
       this.nav.setRoot(MentorPage);
     }
   } else if(this.response.error){
     this.codeIncorrect('Error.', this.response.error.message);    
   }
 });
开发者ID:eongoo,项目名称:valuator,代码行数:23,代码来源:login.ts

示例3:

 .then(data => {
   this.response = data;
   if(this.response.hash){
     this.firstName = this.response.first_name; 
     this.lastName = this.response.last_name; 
     this.loginCodeCorrect = true;
     this.config.set('HASH', this.response.hash);
     this.local.set('HASH', this.response.hash);
   } else {
     this.firstName = ""; 
     this.lastName = ""; 
     this.codeIncorrect('Password error', 'Please try again later');    
     this.loginCodeCorrect = false;
   }
   this.isHandling = false;
   loading.dismiss();
 });
开发者ID:eongoo,项目名称:valuator,代码行数:17,代码来源:login.ts

示例4:

 this._translateService.get("BACK").subscribe((res: string) => {
   this._config.set("ios", "backButtonText", res);
 });
开发者ID:bGraphic,项目名称:varsom-hybrid,代码行数:3,代码来源:app.component.ts

示例5:

 this.translate.get("BACK_BUTTON").subscribe(back => {
   this.config.set("ios", "backButtonText", back);
 });
开发者ID:Bouzmine,项目名称:metho,代码行数:3,代码来源:language.ts

示例6: gotoMediaList

 gotoMediaList(params) {
   this.config.set('backButtonText', params.mainTitle);
   this.navController.push(MediaListPage, params);
 }
开发者ID:davidkirolos,项目名称:RolApp,代码行数:4,代码来源:subcategoryList.ts

示例7: gotoSubcategoryList

 gotoSubcategoryList(params) {
   this.config.set('backButtonText', params.mainTitle);
   this.navController.push(SubcategoryListPage, params);
 }
开发者ID:davidkirolos,项目名称:RolApp,代码行数:4,代码来源:media.ts


注:本文中的ionic-angular.Config.set方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。