工作表和日历之间的Apps脚本问题

问题描述 投票:0回答:1

我正在尝试从日期列和数据列的工作表中创建事件。

我正在挂断此错误消息:

找不到方法createAllDayEventSeries(string,string,string)。 (第14行,文件“代码”)

我的代码附在屏幕截图中,尽管我使用了全天活动代码,因为我的工作表中没有时间,但在大多数情况下,我还是在线上关注Gsuite教程。

关于我要去哪里的任何线索?

<< img src =“ https://image.soinside.com/eyJ1cmwiOiAiaHR0cHM6Ly9pLnN0YWNrLmltZ3VyLmNvbS9PRGlHaS5wbmcifQ==” alt =“我的代码的截图”>

google-apps-script google-sheets google-calendar-api
1个回答
0
投票

问题在于参数的类型错误。根据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

但是您的脚本将所有参数作为字符串传递

相关

© www.soinside.com 2019 - 2024. All rights reserved.