附加菜单未出现

时间:2020-02-27 23:25:54

标签: google-apps-script google-sheets gsuite-addons

安装已发布的Google表格插件后,我在“插件”菜单下看不到它。

我选中了“作为附件运行/测试”-onOpen触发器起作用并且出现菜单。

尽管在Google Apps脚本中,“我的执行”状态为“已完成”,但在GCP“操作日志”中没有看到该时间点的条目。

function onOpen(e) {
  SpreadsheetApp.getUi()
      .createAddonMenu()
      .addItem('Send', 'CreateEvents')
      .addItem('Show', 'showEvents')
      .addSeparator()
      .addSubMenu(SpreadsheetApp.getUi().createMenu('Delete Events')
      .addItem('Delete', 'deleteEvents'))
      .addToUi();
}

function onInstall(e) {
  onOpen(e);
}

范围: https://www.googleapis.com/auth/calendar https://www.googleapis.com/auth/spreadsheets

请告诉我触发代码中是否存在某种错误,或者我需要向支持团队开票吗?

1 个答案:

答案 0 :(得分:1)

不幸的是,您遇到的问题似乎是一个错误。

在这种情况下,您可以通过单击旁边的,在问题跟踪器上为该问题 加星标问题编号,并发表评论并说您受此问题影响。