gpt4 book ai didi

error-handling - withFailureHandler的自定义失败处理程序-Google Apps脚本

转载 作者:行者123 更新时间:2023-12-03 08:13:39 30 4
gpt4 key购买 nike

我正在尝试获取有关google.script.run失败时的更多信息。我知道我可以得到一个基本的错误处理回调函数,以类似以下方式为我提供错误消息:

google.script.run.withFailureHandler(handleError).getMe();

其中 handleError获取为错误消息传递的参数。
function handleError(error) {
console.log(error);
}

但是,如果我想创建一个自定义错误处理程序来提供抛出异常的位置,则可以在 withFailureHandler上使用自定义函数,如下所示:
google.script.run.withFailureHandler(function () {
showError(error, 'getMe');
}).getMe();

通过这种方法,我陷入了一个难题。如何捕获错误消息并传递给 showError()错误处理程序?

最佳答案

只需将error参数添加到您的匿名函数中。

google.script.run.withFailureHandler(function (error) {
showError(error, 'getMe');
}).getMe();

关于error-handling - withFailureHandler的自定义失败处理程序-Google Apps脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25066589/

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