在使用 AppScript 将请求发送到 UrlFetchApp.fetch 之前显示 loader.gif 图片
Show a loader.gif image before sending the request to UrlFetchApp.fetch using AppScript
我想在将请求发送到 UrlFetchApp.fetch 之前显示 loader.gif 或任何加载图像。我浏览了 AppScript 文档,但找不到与此相关的事件。
var response = UrlFetchApp.fetch('url')
Logger.log(response.getContentText())
建议:
您可以使用 Utilities.sleep()
(reference), combined with HtmlService 的组合来创建加载 animation/loader.gif 的 HTML 输出(添加一些 JS 或 CSS 效果使它更像样)。
参考:
https://developers.google.com/apps-script/guides/html/best-practices
我想在将请求发送到 UrlFetchApp.fetch 之前显示 loader.gif 或任何加载图像。我浏览了 AppScript 文档,但找不到与此相关的事件。
var response = UrlFetchApp.fetch('url')
Logger.log(response.getContentText())
建议:
您可以使用 Utilities.sleep()
(reference), combined with HtmlService 的组合来创建加载 animation/loader.gif 的 HTML 输出(添加一些 JS 或 CSS 效果使它更像样)。
参考: https://developers.google.com/apps-script/guides/html/best-practices