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


TypeScript Calendar.createEvent方法代碼示例

本文整理匯總了TypeScript中@ionic-native/calendar.Calendar.createEvent方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript Calendar.createEvent方法的具體用法?TypeScript Calendar.createEvent怎麽用?TypeScript Calendar.createEvent使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在@ionic-native/calendar.Calendar的用法示例。


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

示例1: addEvent

  addEvent(gameInfo: any) {
    console.log(gameInfo);
    debugger;
    const title = 'Game reminder: ' + gameInfo.player;
    const notes = 'vs ' + gameInfo.opponent + ', ' + gameInfo.competition;
    const startDate: Date = gameInfo.date.toDate();
    const endDate = new Date(startDate.getFullYear(), startDate.getMonth(), startDate.getDate(),
      startDate.getHours() + 2, startDate.getMinutes(), startDate.getSeconds());
    console.log('startDate', startDate);
    console.log('endDate', endDate);
    // this.calendar.createEvent('Moj Komšija događaj', this.event.locationName, '', new Date(this.event.dateFrom), new Date(this.event.dateTo)).then(
    //   () => {
    //     this.toast.presentToast('Događaj je uspešno sačuvan u kalendaru telefona.')
    //   }, () => {
    //     this.createCalendarAlert('Greška', 'Došlo je do greške prilikom čuvanja događaja. Proverite da li aplikacija ima dozvoljen pristup kalendaru i pokušajte ponovo.');
    //   });

    this.calendar.createEvent(title, '', notes, startDate, endDate)
      .then(
        () => {
          console.log('event created');
          this.showToast();
        },
        () => console.log('Error occured on creating event.')
      );
  }
開發者ID:ilijapavlovic95,項目名稱:bescout,代碼行數:26,代碼來源:game-reminder.ts

示例2: addEvent

 addEvent(gameInfo: any) {
   const title = 'Report reminder: ' + gameInfo.player;
   const notes = 'vs' + gameInfo.opponent + ', ' + gameInfo.competition;
   const startDate: Date = gameInfo.date;
   const endDate = new Date(startDate.getFullYear(), startDate.getMonth() + 1, startDate.getDate(),
     startDate.getHours() + 2, startDate.getMinutes(), startDate.getSeconds());
   return this.calendar.createEvent(title, null, notes, startDate, endDate);
 }
開發者ID:ilijapavlovic95,項目名稱:bescout,代碼行數:8,代碼來源:calendar.ts


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