使用Google AppsScript触发器 - 如何判断触发了哪个触发器?

时间:2018-04-18 14:05:22

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

我添加了一个触发器,每次用户向日历添加事件时都会运行脚本。它工作正常。 我必须为我想检查的每个日历安装不同的触发器。 我想知道哪个日历已更新,因为根据日历会发生不同的操作。 如何检索导致触发器运行的calendarId?

1 个答案:

答案 0 :(得分:0)

我自己找到了解决方案:

function getCalendarId(e){
  Logger.log("everything: " + e);
  Logger.log("calendarId: " + e.calendarId);
}