當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。