我必须在日历中设置事件。我使用了引用https://www.npmjs.com/package/react-native-send-intent。 我做了安装和链接。并手动设置android文件夹文件(setting / gradle,app / build.gradle和myApplication.java)。 现在在我的组件中,我写道:
var SendIntentAndroid = require('react-native-send-intent');
SendIntentAndroid.addCalendarEvent({
title: 'Go To The Park',
description: "It's fun to play at the park.",
startDate: '2016-01-25 10:00',
endDate: '2016-01-25 11:00',
recurrence: 'weekly',
location: 'The Park'
});
这一次我收到错误消息:
“ TypeError:TypeError:TypeError:未定义不是函数(在'... RNSendIntentAndroid.addCalendarEvent ...'附近)”
我该怎么解决。请让我知道是否有其他方法可以做到这一点。
答案 0 :(得分:0)
从项目中退出博览会时,我的所有错误均已删除。现在一切正常。