Google Apps 脚本基于时间的触发器日期和时间

Google Apps Script Time Based Trigger Date and Hour

我可以通过资源菜单手动在特定日期和时间向运行添加时间驱动触发器,但我找不到如何以编程方式执行此操作.我有 .at(date) 方法,但我想为此添加一个特定时间。这可能以编程方式实现吗?

文档中的示例:

 // Creates a trigger for December 1, 2012
 var triggerDay = new Date(2012, 11, 1);
 ScriptApp.newTrigger("myFunction")
   .timeBased()
   .at(triggerDay)
   .create();

2012 年 12 月 1 日早上 7 点"myFunction"可以运行吗?

感谢您的帮助。

日期对象可以在其构造函数中采用时间值。

var d = new Date(year, month, day, hours, minutes, seconds, milliseconds);

触发器将从指定时间开始 运行 +- 15 分钟。