使用Google Apps脚本未在Google日历中添加事件描述

时间:2018-11-06 17:02:09

标签: google-apps-script google-calendar-api

我正在使用Google Apps脚本在Google日历中添加事件,并按照示例添加了如下事件:

var summary = "Some description";
var otherArgs = {description: summary};
        var event = calendar.createEvent(
          title,
          new Date(parseDate(startStrDate, startTime)),
          new Date(parseDate(endStrDate, endTime)),
          otherArgs
        );

但是当我在Google日历中看到活动时,便会看到一个空的描述。

如果我像这样对它进行硬编码

var event = calendar.createEvent(
          title,
          new Date(parseDate(startStrDate, startTime)),
          new Date(parseDate(endStrDate, endTime)),
          {description: "Some description"}
        );

我得到相同的结果。

0 个答案:

没有答案