时间驱动的触发(每天)不是每天触发

时间:2019-11-15 07:43:29

标签: google-apps-script google-sheets

我有与How to make sure a daily time trigger runs?中所述的类似问题。

我在其中一个Google表格中有一个特定的脚本,该脚本每天触发一次(时间驱动,应该每天早晨触发,通过界面设置,而不是通过编程方式进行设置)。但是该脚本并非每天都执行。我可以在执行报告中看到这一点,那里只有成功的执行而没有失败的执行。我还可以通过检查工作表中的某个单元格来查看脚本是否执行,该单元格在脚本运行时会更新为执行时间戳。而且我在触发器设置中为执行失败设置了立即通知。

在我的特定情况下,该脚本应该从11月9日至11月13日每天运行,但仅在11月9日,11月10日,11月12日运行。我没有收到有关执行失败的任何通知。

脚本本身不使用任何API,这是非常基本的:读取一张工作表中的数据,进行一些计算然后写入另一张工作表(谈论单个Google表格文件中的工作表)。

如果我手动运行main函数,它将始终有效。

我很高兴得到一些想法,可能出什么问题了。谢谢。

编辑:代码示例(Array.includes的主要功能和原型)

function main(){
  var date = new Date();
  //var date = new Date(2019, 9, 1); // year, month (zero-indexed!!!), day
  //var date = new Date(date.getYear(), date.getMonth()-3); // testing
  var currentDay = Utilities.formatDate(date, "CET", "d");
  Logger.log('currentDate: ' + Utilities.formatDate(date, "CET", "YYYY-MM-dd HH:mm:ss.S") + ' | currentDay: ' + currentDay);

  if (currentDay == 1) {
    Logger.log('currentDay is 1st of the month');
    date = new Date(date.getYear(), date.getMonth() - 1);
    var newCurrentDay = Utilities.formatDate(date, "CET", "d");
  }
  var monthToCheck = Utilities.formatDate(date, "CET", "MMMM").toUpperCase();
  var yearToCheck = Utilities.formatDate(date, "CET", "YYYY");
  Logger.log('dateToCheck: ' + Utilities.formatDate(date, "CET", "YYYY-MM-dd HH:mm:ss.S") + ' | monthToCheck: ' + monthToCheck + ' | yearToCheck: ' + yearToCheck);

  var firstProjectRow = 7;   // first row with the project data
  var firstProjectCol = 1;   // first column with project data - should contain Tool IDs
  var numOfProjectRows = 999;   // num of project rows to check (counted from and including var firstProjectRow)
  var numOfProjectCols = 21;   // num of project columns to check (counted from and including var firstProjectCol the last one contains number of hours for the last service)
  var firstProjectHoursCol = 7;   // first column with data about project hours (usually PM hours)
  // ************* DO NOT EDIT BELOW THIS LINE ************* //

  //return;

  var indexedFirstProjectHoursCol = firstProjectHoursCol - 1;
  var ss = SpreadsheetApp.getActiveSpreadsheet();
  //var sheet = ss.getSheets()[3];
  var sheetName = monthToCheck + ' ' + yearToCheck;
  var sheet = ss.getSheetByName(sheetName);
  Logger.log('sheet: ' + sheetName);
  var range = sheet.getRange(firstProjectRow, firstProjectCol, numOfProjectRows, numOfProjectCols); // getRange(row, column, numRows, numColumns)
  var rangeValues = range.getValues();
  //Logger.log('rangeValues: "' + rangeValues);
  var toolData = new Array();
  var toolIds = new Array();
  var toolHours = new Array();
  //return;

  for (var row in rangeValues) {
    Logger.log('row: "' + row);
    var clientId = rangeValues[row][0];
    var projectId = rangeValues[row][1];
    var hoursSum = 0;

    // we have Tool ID so it's OK to proceed
    if (clientId != "" && projectId != "") {
      var clientProjectId = clientId + "-" + projectId;
      for (var col in rangeValues[row]) {
        var cellValue = rangeValues[row][col];
        //Logger.log('col: ' + col + ' value: ' + value);

        // get hours sum
        if (col >= indexedFirstProjectHoursCol)
          hoursSum += typeof cellValue == 'number' ? cellValue : 0;
      }
      //Logger.log('hoursSum: [' + hoursSum + ']');

      var record = {id: clientProjectId, hours: hoursSum};
      Logger.log("Data: " + record.id + " : " + record.hours);
      // don't yet have a record of clientId-projectId
      if (!toolIds.includes(clientProjectId)) {
        toolData.push(record);
      }
      else {
        recordIdx = toolIds.indexOf(clientProjectId);
        toolData[recordIdx].hours += hoursSum;
      }

      toolIds = [];
      toolHours = [];
      toolData.forEach(function(item) {
        toolIds.push(item.id);
        toolHours.push(item.hours);
      });

    }
    //Logger.log(toolData);
    //Logger.log('ROW DONE!');
  }

  Logger.log('ROWS DONE!');
  Logger.log('toolData.length: ' + toolData.length);
  toolData.forEach(function(item) {
    Logger.log('toolData: ' + item.id + " : " + item.hours);
  });  
  Logger.log('DONE!!!');


  // fill the table in the sheet with assigned number of hours
  fillTheSheet(sheetName, toolData);
}

1 个答案:

答案 0 :(得分:3)

Apps脚本触发器一直有点挑剔。但是最近,它们变得比平时更加​​不可靠(有一些关于虚假触发器和其他疾病的报道)。

在这种情况下,您可以通过利用诸如cron-jobs.org之类的外部服务来完全避免使用它们。

您将必须重构您的应用程序脚本项目,并使用doPost(e)函数将其部署为公共Web App。然后,您需要将Web应用程序的url作为每天调用的Web挂钩端点传递给外部服务。