Google Apps脚本Web应用程序无法正常运行

时间:2017-06-05 16:30:55

标签: web-applications google-apps-script

我正在尝试使用Google Apps Scripts网络应用程序。我只是让侧边栏工作并且它们非常有用但是当我尝试做一个简单的webapp时,代码显示在应用程序中而不是被执行: enter image description here enter image description here enter image description here enter image description here

它必须是简单的东西,但是当你知道如何时,它总是很简单。

感谢您的帮助。 〜

1 个答案:

答案 0 :(得分:2)

您需要在HtmlService中使用模板服务。

  

https://developers.google.com/apps-script/guides/html/templates

code.gs

function doGet() {
  var html= HtmlService
      .createTemplateFromFile('Index');
      html.name = 'Bob';         
      return html.evaluate();
}

的index.html

<!DOCTYPE html>
<html>
  <head>
    <base target="_top">
  </head>
  <body>
    <b>Hi <?=name?>!</b>
  </body>
</html>