所以我制作了一个日历应用程序,该应用程序使用ionic2日历显示给定日期的事件列表,但我想将事件导出到android上的本机日历。 是否有任何文档可让我了解如何实现此功能?
答案 0 :(得分:1)
尝试使用该离子原生插件
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); }
);
});
}
希望有帮助!