在Google电子表格

时间:2016-06-15 18:58:56

标签: google-apps-script google-sheets triggers google-apps-script-addon

当我测试我的项目作为加载项时,onInstall是否会触发工作?

我做了一个非常简单的onInstall函数。它只是将内容添加到电子表格中的一行。应该在安装加载项时调用它,但我现在尝试使用“Test as add-on”功能验证此行为。

function onInstall(){
  var thisSpreadsheet = SpreadsheetApp.getActiveSpreadsheet();
  thisSpreadsheet.getSheetByName("Destinatários").appendRow(['test']);
}

同样,如果我尝试使用菜单选项“Publish> Test as add-on”,则不会调用onInstall。不应该叫它吗?什么是预期的行为。

我已经尝试了测试的所有“安装配置”选项,但它仍然无法用于我的附加组件测试。

1 个答案:

答案 0 :(得分:0)

您正面临自动化问题,请检查您可以在此处执行的操作:https://developers.google.com/apps-script/add-ons/lifecycle#the_complete_lifecycle enter image description here