我尝试使用ionic-native-calendar在我的本地日历应用中创建一个活动,但是如何在其中添加“allday”选项呢?
calendar.createEventWithOptions("Title","Location","Meeting",startdate,enddate,options)
答案 0 :(得分:0)
使用cordova插件日历查找答案我得到allday选项以满足我的要求。
var calOptions = (<any>window).plugins.calendar.getCalendarOptions();
calOptions.allday = true;
(<any>window).plugins.calendar.createEventWithOptions("Hello","","Meeting",start,enddate,calOptions)