Set a trigger to run function the last hour of eac

2019-03-01 05:37发布

In google scripts I know there are triggers to run by date, but I don't think that will work because month's have different amounts of days. So I was wondering if there's a way to set a trigger to run at 11PM on the last night of each month, no matter if that's a 30 or a 31.

Thanks

1条回答
欢心
2楼-- · 2019-03-01 06:22

First create a trigger from project Edit > current project's trigger or register it programmatically that will run every day at 11 pm.

ScriptApp.newTrigger("myTriggerFunction")
   .timeBased()
   .atHour(23)
   .everyDays(1) 
   .create();

Then in your trigger handler, check if today is the last day of the month, then do your work.

function myTriggrFunction()
{
  var today = new Date();
  var lastDayOfMonth = new Date(today.getFullYear(), today.getMonth()+1, 0);

  if(today.getDate() == lastDayOfMonth.getDate() )
  {
    // your work to be done
  }
}
查看更多
登录 后发表回答