谷歌应用程序脚本如何安排触发器

时间:2016-07-21 04:57:18

标签: google-apps-script

我有一个接受来自不同函数的参数的函数。如何将此功能安排为触发器?

function runData(){
  return googleApps.appsImport('table')
  }

function appsImport(sourcetable){
  //push data from table to sheet
  }

1 个答案:

答案 0 :(得分:0)

触发另一个函数,使用您想要的参数调用appsImport。

function runTrigger(){
  appsImport('table');
}

function appsImport(sourcetable){
  //push data from table to sheet
 }