gpt4 book ai didi

javascript - 在 Google Apps 脚本上提示用户输入,错误为 `getUi()` 方法

转载 作者:行者123 更新时间:2023-12-03 11:09:18 26 4
gpt4 key购买 nike

我一直在尝试编写一个脚本来显示一个提示框,该提示框将接受用户输入以供我打开网站。

我正在尝试以下代码

var ui = SpreadsheetApp.getUi();
var response = ui.prompt('Please input email address', ui.ButtonSet.YES_NO);

但是我收到一条错误消息

"The api method 'getUi' is not available yet in the new version of Google Sheets."

有谁知道我如何解决这个问题,以便我可以获得用户输入。我到处寻找解决方案,但找不到任何获取用户输入的方法。

谢谢。

最佳答案

当我在新 Google 电子表格的 onOpen() 函数中使用您的代码时,它对我来说没有错误:

function onOpen() {

var ui = SpreadsheetApp.getUi();
var response = ui.prompt('Please input email address', ui.ButtonSet.YES_NO);

}

上面的代码对我有用。当打开或刷新工作表时,它会自动显示提示。因此,我们需要更多信息来隔离问题。您希望该函数在工作表打开时运行,还是以其他方式触发代码?

关于javascript - 在 Google Apps 脚本上提示用户输入,错误为 `getUi()` 方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27683564/

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