gpt4 book ai didi

javascript - Google 表格附加组件中的自定义函数

转载 作者:行者123 更新时间:2023-11-29 19:31:58 24 4
gpt4 key购买 nike

我正在尝试为 Google 表格创建自定义函数作为附加组件。

在我的电子表格中一切正常,我也可以通过 Web chrome 商店下载它使用 Google 提供给我的链接。

我遇到的唯一问题是无法通过 Google 表格附加商店使自定义功能正常工作。

不知道我是否必须在 manifest.json 文件中添加更多信息,或者做其他事情。

我的应用程序已注册,它没有连接到外部服务,它只使用通常的 javascript 函数来拆分一个字符串对象。

代码结构如下:

function onOpen(e) {
SpreadsheetApp.getUi().createAddonMenu()
.addItem('Start', 'use')
.addToUi();
}

/**
* Enables the add-on on for the current spreadsheet (simply by running) and
* shows a popup informing the user of the new functions that are available.
*/
function use() {
var title = "Example";
var message = "The Function GETID is now available in this spreadsheet";
var ui = SpreadsheetApp.getUi();
ui.alert(title, message, ui.ButtonSet.OK);
}

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

/**
* example
* @param {string} input the example URL.
* @return The example URL.
* @customfunction
*/
function GETID(URL) {
return 'example '+URL;
}

最佳答案

发布 Google 插件与发布 Chrome 网上应用店扩展程序是不同的过程。附加组件也仅在开发人员预览中。这不会阻止您发布附加组件,但这意味着它必须首先获得 Google 的批准。这page contains a form for submitting your add-on for approval以及有关发布过程的其他信息。

关于javascript - Google 表格附加组件中的自定义函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26944858/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com