当前位置: 首页>>代码示例>>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;未经允许,请勿转载。