将 Ionic 日历导出到 google 日历
Export Ionic calendar to google calendar
所以我制作了一个日历应用程序,它使用 ionic2 日历显示给定日期的事件列表,但我想将事件导出到 android 上的本机日历。
是否有任何文档可以让我了解如何实现此类功能?
尝试使用这个 ionic-native 插件
https://ionicframework.com/docs/native/calendar
来自这个 github 项目:https://github.com/EddyVerbruggen/Calendar-PhoneGap-Plugin
当你在你的模块中导入插件时,然后使用这种方式:
constructor(private calendar: Calendar) { }
yourEvent(){
//check permission on android
this.calendar.hasReadWritePermission().then((rta)=>{
if (!rta){
this.calendar.requestReadWritePermission();
return;
}
this.calendar.createEventInteractively(title,location,otherNotes,startDate,endDate).then(
(msg) => { console.log("msg "+JSON.stringify(msg)); },
(err) => { console.log("err "+err); }
);
});
}
希望对您有所帮助!
所以我制作了一个日历应用程序,它使用 ionic2 日历显示给定日期的事件列表,但我想将事件导出到 android 上的本机日历。 是否有任何文档可以让我了解如何实现此类功能?
尝试使用这个 ionic-native 插件
https://ionicframework.com/docs/native/calendar
来自这个 github 项目:https://github.com/EddyVerbruggen/Calendar-PhoneGap-Plugin
当你在你的模块中导入插件时,然后使用这种方式:
constructor(private calendar: Calendar) { }
yourEvent(){
//check permission on android
this.calendar.hasReadWritePermission().then((rta)=>{
if (!rta){
this.calendar.requestReadWritePermission();
return;
}
this.calendar.createEventInteractively(title,location,otherNotes,startDate,endDate).then(
(msg) => { console.log("msg "+JSON.stringify(msg)); },
(err) => { console.log("err "+err); }
);
});
}
希望对您有所帮助!