我正在尝试从日期列和数据列的工作表中创建事件。
我正在挂断此错误消息:
找不到方法createAllDayEventSeries(string,string,string)。 (第14行,文件“代码”)
我的代码附在屏幕截图中,尽管我使用了全天活动代码,因为我的工作表中没有时间,但在大多数情况下,我还是在线上关注Gsuite教程。
关于我要去哪里的任何线索?
<< img src =“ https://image.soinside.com/eyJ1cmwiOiAiaHR0cHM6Ly9pLnN0YWNrLmltZ3VyLmNvbS9PRGlHaS5wbmcifQ==” alt =“我的代码的截图”>
问题在于参数的类型错误。根据https://developers.google.com/apps-script/reference/calendar/calendar#createalldayeventseriestitle,-startdate,-recurrence
参数
Name Type Description
title String the title of the events in the series
startDate Date the date of the first event in the series (only the day is used; the time is ignored)
recurrence EventRecurrence the recurrence settings of the event series
但是您的脚本将所有参数作为字符串传递
相关