當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript ionic-native.LocalNotifications類代碼示例

本文整理匯總了TypeScript中ionic-native.LocalNotifications的典型用法代碼示例。如果您正苦於以下問題:TypeScript LocalNotifications類的具體用法?TypeScript LocalNotifications怎麽用?TypeScript LocalNotifications使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了LocalNotifications類的10個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: constructor

  constructor(public navCtrl: NavController) {

    LocalNotifications.on('click', (notification, state) => {
      alert(notification.id + " was clicked");
    })

  }
開發者ID:teerasej,項目名稱:training-ionic2-local-notification,代碼行數:7,代碼來源:home.ts

示例2: send

 send() {
   LocalNotifications.schedule({
     id: 1,
     text: 'Notificação de teste',
     data: { secret: 'Olá'}
   });
 }
開發者ID:arthurbragaa,項目名稱:ionic2-native,代碼行數:7,代碼來源:notification-test.ts

示例3: setTimeout

 setTimeout(()=> {
     LocalNotifications.schedule({
         id: 1,
         text: "Single Notification",
         data: {secret: "Hello"}
     });
 }, 6000)
開發者ID:Muhammadmavia,項目名稱:ITKA,代碼行數:7,代碼來源:camera.ts

示例4: constructor

  constructor(private nav: NavController) {

    LocalNotifications.on('click', (notification, state) => {
      this.notification = notification;
    });

  }
開發者ID:plinionaves,項目名稱:curso-iniciando-ionic-2-native,代碼行數:7,代碼來源:notification-test.ts

示例5: scheduleNotification

 scheduleNotification(){
     LocalNotifications.schedule({
         text: "This is a Notification",
         at: new Date(new Date().getTime() + 3600),
         led: "FF0000",
         sound: null
     });
 }
開發者ID:ralphowino,項目名稱:ionic-native-kitchen-sink,代碼行數:8,代碼來源:localnotifications.ts

示例6: localNotificationShow

    localNotificationShow(msg) {
        LocalNotifications.schedule({
            id: 1,
            text: msg,
            icon: 'http://a2.mzstatic.com/us/r30/Purple6/v4/45/99/be/4599beb5-9f5b-820b-c0b4-7936727f6949/icon256.png',
            data: {secret: "dhhd"}
        });

    }
開發者ID:Muhammadmavia,項目名稱:ionic-2-chat,代碼行數:9,代碼來源:service.ts

示例7: constructor

  constructor(nav: NavController) {
    this.nav = nav;
    

    LocalNotifications.on('click', function(notif){
      nav.present(Toast.create({
        message:'Notification id : ' + notif.id + ' clicked !',
        duration:3000
      }));
    });

  }
開發者ID:clovelCed,項目名稱:ionic2-local-notifications,代碼行數:12,代碼來源:home.ts

示例8: singleNotification

  singleNotification(id: number, minute: number){

    let date = new Date();
    date.setMinutes(date.getMinutes() + minute);

    LocalNotifications.schedule({
      id:id,
      title:'Single notification',
      text:'This is a single notification',
      at:date
    });

    this.toast('Notification scheduled !');
  }
開發者ID:clovelCed,項目名稱:ionic2-local-notifications,代碼行數:14,代碼來源:home.ts

示例9:

 this.loginService.Login(this.username, this.password).subscribe(x => {
     console.log(x);
     if(x.token){
         LocalNotifications.schedule({
         id: 1,
         text: "TEST",
         data: { secret: "232323" }
     });
         this.nav.push(TabsPage);
     }
     else {
         let alert = Alert.create({
             title: 'Alert',
             subTitle: 'Invalid Login information, please try again',
             buttons: ['OK']
         });
         this.nav.present(alert);
     }
 });
開發者ID:colanconnon,項目名稱:ionicFishTracker2,代碼行數:19,代碼來源:login.ts

示例10: multipleNotification

  multipleNotification(){

    let first = new Date();
    let second = new Date();
    second.setMinutes(first.getMinutes()+1);

    LocalNotifications.schedule([{
      id:2,
      title:'Multiple notification 1',
      text:'This is the first notification',
      at:first
    },
    {
      id:3,
      title:'Multiple notification 2',
      text:'This is the second notification',
      at:second
    }]);

    this.toast('Notification scheduled !');
  }
開發者ID:clovelCed,項目名稱:ionic2-local-notifications,代碼行數:21,代碼來源:home.ts


注:本文中的ionic-native.LocalNotifications類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。