在Google脚本中删除投掷错误消息?

发布于 2025-01-24 01:43:24 字数 259 浏览 0 评论 0原文

我是第一次使用Google脚本,并对投掷消息有疑问。 在Google表中显示错误消息后,我们将获得一个红色对话框,显示该消息。它一直留在那里,直到不按下被解雇的按钮为止。并继续在屏幕上收集。

有没有办法自动驳回这些抛出的消息? 以下图像显示了收集的错误消息,这些消息一直待在那里,直到不按下被解雇的按钮。

I'm using google scripts for the first time and have a question regarding throw messages.
After showing a error message in the google sheets, we get a red dialogue box showing that message. It stays there till the dismissed button is not pressed. And keeps on gathering on the screen.

Is there a way to auto dismiss these thrown messages?
The following image shows the gathered error messages which stays there till the dismissed button is not pressed.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

も让我眼熟你 2025-01-31 01:43:24

您可以使用尝试/捕获

function test() {
  try {
    SpreadsheetApp.openById('1234567890')
  }
  catch (e) {
    SpreadsheetApp.getActive().toast(e)
  }
}

function test() {
  try {
    SpreadsheetApp.openById('1234567890')
  }
  catch (e) {
  }
}

You can use try/catch

function test() {
  try {
    SpreadsheetApp.openById('1234567890')
  }
  catch (e) {
    SpreadsheetApp.getActive().toast(e)
  }
}

or

function test() {
  try {
    SpreadsheetApp.openById('1234567890')
  }
  catch (e) {
  }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文