gpt4 book ai didi

google-apps-script - 在 Google Apps Script 网络应用程序中呈现 Drive 中的 HTML 文件

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

我在 Google 云端硬盘中有一个 .html 文件。是否可以将它与 HtmlService 一起使用?

我知道这段代码会在项目 中呈现Index.html 文件。

function doGet() {
return HtmlService.createHtmlOutputFromFile('Index');
}

但是我怎样才能让它呈现 Google Drive 中的文件呢?

我的想法是,用户将在网络应用程序之外的 .html 文件上进行协作,而网络应用程序将呈现 t。

最佳答案

  • 您想使用从您的 Google Drive 上的文件中检索到的 HTML 数据来部署 Web 应用程序。

如果我的理解是正确的,这个修改怎么样?修改后的脚本流程如下。

  1. 从 Google Drive 上的文件中检索 HTML 数据。
  2. 使用 HTML 数据部署 Web 应用程序。

修改后的脚本:

function doGet() {
var fileId = "###"; // Please set the fileID of HTML file on Google Drive.

var html = DriveApp.getFileById(fileId).getBlob().getDataAsString();
return HtmlService.createHtmlOutput(html);
}

备注:

  • 这样,当 HTML 被修改时,Web 应用程序的 HTML 也会被修改,而无需重新部署为新版本。因为 Google Apps Script 的脚本没有改变。
  • 但是,当您修改了 Google Apps Script 的脚本时,请重新将 Web Apps 部署为新版本。这样,最新的脚本就会反射(reflect)到 Web 应用程序。

引用资料:

如果我误解了您的问题,我深表歉意。

关于google-apps-script - 在 Google Apps Script 网络应用程序中呈现 Drive 中的 HTML 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56267682/

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