gpt4 book ai didi

angularjs - 使用 Ionic 框架将事件添加到设备日历

转载 作者:行者123 更新时间:2023-12-04 23:49:36 24 4
gpt4 key购买 nike

我正在使用 Ionic 框架和 AngularJS 创建一个跨平台移动应用程序
在这个应用程序中,我需要获取一个日期字符串并将其添加到设备的 native 日历中,有没有办法只使用 Ionic 和 AngularJS 来做到这一点?
如果没有办法这样做,你能告诉我是否有办法在没有他们的情况下这样做?
谢谢你 !

最佳答案

查看 Cordova 日历的 Angular 包装器:
http://ngcordova.com/docs/plugins/calendar/

将 ngCordova 添加到 app.js 并安装日历插件后,您可以将 $cordovaCalendar 注入(inject) Controller ,然后像这样调用它:

  $scope.createEvent = function(event){
// Add to calendar interactively (vs silently):
$cordovaCalendar.createEventInteractively({
title: event.summary,
location: event.location,
notes: event.description,
startDate: startsAt,
endDate: endsAt
// startDate: new Date(2015, 0, 6, 18, 30, 0, 0, 0),
// endDate: new Date(2015, 1, 6, 12, 0, 0, 0, 0)
}).then(function (result) {
// success
}, function (err) {
// alert('Oops, something went wrong');
});
}

关于angularjs - 使用 Ionic 框架将事件添加到设备日历,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25906663/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com