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


TypeScript Config.get方法代码示例

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


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

示例1: constructor

  constructor(private nav: NavController, 
              public navParams: NavParams, 
              public config: Config, 
              public guestService: GuestService) {
    this.guest = navParams.get('guest');
    this.group = navParams.get('group');
    this.isTheLastGuestToRate = navParams.get('flag');
    this.allFilled = false;
    this.score = [];
    this.response = [];
    this.isMentor = this.config.get('MENTOR');
    this.isHomestay = this.config.get('HOMESTAY');
    this.error = false;

    if(this.guest) {
      if(this.guest.score) {
        this.getGuestDiyData();
      } else if (this.group.diy_model) {
        this.getGuestDiyModel();
      } else {
        this.error = true;
        console.error('Parameter error');
      }
    }
  }
开发者ID:eongoo,项目名称:valuator,代码行数:25,代码来源:evaluate-details.ts

示例2: btnClick

  btnClick(button: any, dismissDelay?: number) {
    if (!this.isEnabled()) {
      return;
    }

    // keep the time of the most recent button click
    this.lastClick = Date.now();

    let shouldDismiss = true;

    if (button.handler) {
      // a handler has been provided, execute it
      // pass the handler the values from the inputs
      if (button.handler(this.getValues()) === false) {
        // if the return value of the handler is false then do not dismiss
        shouldDismiss = false;
      }
    }

    if (shouldDismiss) {
      setTimeout(() => {
        this.dismiss(button.role);
      }, dismissDelay || this._config.get('pageTransitionDelay'));
    }
  }
开发者ID:zeqk,项目名称:mapleapp,代码行数:25,代码来源:mc-house-popup.ts

示例3: openContact

  openContact(speaker: SpeakerModel) {
    let mode = this.config.get('mode');

    let actionSheet = this.actionSheetCtrl.create({
      title: 'Contact with ' + speaker.name,
      buttons: [
        {
          text: `Email ( ${speaker.email} )`,
          icon: mode !== 'ios' ? 'mail' : null,
          handler: () => {
            window.open('mailto:' + speaker.email);
          }
        },
        {
          text: `Call ( ${speaker.phone} )`,
          icon: mode !== 'ios' ? 'call' : null,
          handler: () => {
            window.open('tel:' + speaker.phone);
          }
        }
      ]
    });

    actionSheet.present();
  }
开发者ID:ddellamico,项目名称:ionic-conference-app,代码行数:25,代码来源:speaker-list.ts

示例4: constructor

 constructor(public nav: NavController, 
             public navParams: NavParams, 
             public config: Config, 
             public uploadService: UploadService) {
   this.initSignature(this);
   this.group = navParams.get('group'); 
   this.guest = navParams.get('guest'); 
   this.isHomestay = false;
   this.isMentor = false;
   this.isHandling = false;
   if(this.config.get('HOMESTAY')) {
     this.isHomestay = true;
   }
   if(this.config.get('MENTOR')) {
     this.isMentor = true;
   }
 }
开发者ID:eongoo,项目名称:valuator,代码行数:17,代码来源:sign-page.ts

示例5: editApp

  editApp(app) {

    let body = JSON.stringify(app);
    let headers = new Headers({ 'Content-Type': 'application/json' });
    let options = new RequestOptions({ headers: headers });

   return this.http.put(this.config.get('apiUrl') + 'apps/' + app._id, body, options)
       .toPromise()
       .then(res => {
         return true;
       })
       .catch(err=>console.log(err));
  }
开发者ID:lpikora,项目名称:ionic-debug-console-backend-ui,代码行数:13,代码来源:app-data.ts

示例6: initializePage

 initializePage() {
   if(this.config.get('HASH')) {
     this.homeService.load(0)
     .then(data => {
       this.group = data;
       if(!this.group.pics){
         this.group.pics = [];
       }
       if(this.group.error) {
         this.group = [];
         this.presentAlert(this.group.error.message);
       }
     });
   }
 }
开发者ID:eongoo,项目名称:valuator,代码行数:15,代码来源:mentor.ts

示例7: initializePage

 initializePage() {
   if(this.config.get('HASH')) {
     this.homeService.load(0)
     .then(data => {
       this.group = data;
       if(this.group.error) {
         this.presentAlert(this.group.error.message);
         this.group = [];
       } else {
         this.group.hasPic = true;
         this.getPicsStatus();
       }
     });
   } else {
     console.error('HASH does not exist.');
   }
 }
开发者ID:eongoo,项目名称:valuator,代码行数:17,代码来源:homestay.ts

示例8: initializeLeaderPage

  initializeLeaderPage() {
    if(this.config.get('HASH')) {
      this.homeService.load()// 0 : load,  1:reload
      .then(data => {
        if(this.loaded) {
          this.initializeParams();
        }
        this.group = data;
        if(!this.group.err && this.group) {
          if(this.group.schedule) {
            this.schedules = this.group.schedule;
          } else {
            console.warn('It seems schedules is empyt.'); 
          }

          this.ongoing = moment(moment(this.group.schedule_start).format('YYYY-MM-DD')) <= moment(moment().format('YYYY-MM-DD'));
          this.schedules.forEach((schedule) => {
            if(this.grading.length && schedule.date == this.tempDate) {
              this.grading.push(schedule);
            }
            if(!this.grading.length && moment(schedule.date) >= moment(this.today)) {
              this.tempDate = schedule.date;  
              this.grading.push(schedule);
            }
          });
          
          for(let i in this.group.matters) {
            if(this.group.matters[i][0].date == this.today) {
              this.todayNotes = this.group.matters[i];
            } else if (this.group.matters[i][0].date == moment().add(1, 'days').format('YYYY-MM-DD')) {
              this.tomorrowNotes = this.group.matters[i];
            } else if (moment(moment().add(1, 'days').format('YYYY-MM-DD')).isBefore(this.group.matters[i][0].date)) {//明天以后
              this.afterTomorrowNotes.push({data: this.group.matters[i]});
            }
          }
          this.getLearned(moment(this.group.schedule_start).format('YYYY-MM-DD'), moment(this.group.schedule_end).format('YYYY-MM-DD'));
        } else {
          console.warn('It seems respnse is empyt.'); 
        }
      });
    } else {
      console.error('HASH does not exist.'); 
    }
  }
开发者ID:eongoo,项目名称:leader,代码行数:44,代码来源:leader.ts

示例9: constructor

 constructor(public http: Http, public config: Config) {
   this.api = this.config.get('APIURL'); 
   this.hash = this.config.get('HASH'); 
 }
开发者ID:eongoo,项目名称:valuator,代码行数:4,代码来源:guest-service.ts

示例10: Promise

 return new Promise(resolve => {
   this.http.get(this.config.get('apiUrl') + "logs/" + logId).subscribe(res => {
     var deviceInfo = this.processLogInfo(res.json().data.deviceInfo);
     resolve(deviceInfo);
   });
 });
开发者ID:lpikora,项目名称:ionic-debug-console-backend-ui,代码行数:6,代码来源:app-data.ts


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