Google Apps 脚本 HtmlService.createHtmlOutputFromFile 似乎无法正常工作

问题描述 投票:0回答:1

我多年来一直使用 Google Apps 脚本。 我已经成功使用 HtmlService.createHtmlOutputFromFile 几个月了。 但几周前,运行了几个月的代码停止运行了。 根本没有 HTML 被渲染。

我创建了一个非常小的测试用例。

测试.gs

function doIt()
{
  var htmlOutput = HtmlService.createHtmlOutputFromFile('test');
}

测试.html

<!DOCTYPE html>
<html>
  <head>
    <base target="_top">
  </head>
  <body>
     <input type="text" id="id" placeholder="Input" style="width: 200px;"> 
  </body>
</html>

代码在这里。 https://docs.google.com/spreadsheets/d/1R0EZaHZyR9uUOU6iawc56Tq_lDAmU1aNvWqy9Emluq8/edit?usp=sharing TML 已呈现。 有什么想法吗?

google-sheets google-apps-script web-applications
1个回答
0
投票

服务器端代码中的函数名称需要更正。使用

doIt
代替
doGet
。有关详细信息,请参阅 https://developers.google.com/apps-script/guides/web

© www.soinside.com 2019 - 2024. All rights reserved.