0

安装已发布的 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

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

4

1 回答 1

1
于 2020-03-02T09:07:49.620 回答