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


TypeScript local-notifications.LocalNotifications類代碼示例

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


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

示例1: Date

    this.platform.ready().then(()=>{
      this.localNotifications.schedule({
        id: 1,
        title: 'TrackoMed',
        text: 'Sleep Time',
        data: { mydata: 'Have you Slept Yet?' },
        icon: '../../icon.png',
        at: new Date(new Date().getTime() + 2 * 1000)
      });

    });
開發者ID:maazkabir,項目名稱:trackomed,代碼行數:11,代碼來源:care.ts

示例2:

      this.platform.ready().then((readySource) => {
      this.localNotifications.on('click', (notification, state) => {
        let json = JSON.parse(notification.data);

        let alert = alertCtrl.create({
          title: notification.title,
          subTitle: json.mydata
        });
        alert.present();
      })
    });
開發者ID:maazkabir,項目名稱:trackomed,代碼行數:11,代碼來源:care.ts

示例3: addFavorite

  addFavorite(id: number): boolean {
    if (!this.isFavorite(id)) {
      this.favorites.push(id);
      this.storage.set('favorites', this.favorites);

      // Schedule a single notification
      this.localNotifications.schedule({
        id: id,
        text: 'Dish ' + id + 'added as a favorite successfully'
      });
    }      
    console.log('favorites', this.favorites);
    return true;
  }
開發者ID:sandy100,項目名稱:Coursera,代碼行數:14,代碼來源:favorite.ts

示例4: setInterval

    this.interval = setInterval(() => {

      this.now = new Date();

      if (this.notifications) {

        let { period, timeLeft } = this.getCurrentClassInfo();

        if (period) {
          this.notif.schedule({
            id: 0,
            title: period.name,
            text: `${timeLeft} mins remaining`,
            badge: timeLeft
          });
        }

      }

    }, 5000);
開發者ID:sshh12,項目名稱:CyRanch-App,代碼行數:20,代碼來源:bells.ts


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