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


TypeScript ionic-angular.Config类代码示例

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


在下文中一共展示了Config类的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: constructor

	constructor(private app: App, component: ImageViewerComponent, opts: ImageViewerOptions = {}, config: Config) {
		super(component, opts);

		config.setTransition('image-viewer-enter', ImageViewerEnter);
		config.setTransition('image-viewer-leave', ImageViewerLeave);

		this.didLeave.subscribe(() => opts.onCloseCallback && opts.onCloseCallback());

		this.willEnter.subscribe(() => this.handleHighResImageLoad(opts.fullResImage));
	}
开发者ID:pliablepixels,项目名称:ionic-img-viewer,代码行数:10,代码来源:image-viewer-impl.ts

示例3: 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

示例4: 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

示例5: 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

示例6:

 .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

示例7: 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

示例8: 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

示例9: 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

示例10:

 .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


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