0

如何在谷歌应用程序脚本的 html 模板中使用在字符串中返回 html 的函数?

例如,这是我的 code.gs:

function doGet() {
  return HtmlService.createTemplateFromFile('test').evaluate();
}

function getHtml(){
  return "<b> hello there </b>";
}

在我的 html 文件“test.html”中,我有以下内容:

<html>
 <?= getHtml() ?>
</html>

你会看到结果是这样的:

在此处输入图像描述

我怎样才能改变它,让它在那里以粗体显示你好,而不显示标签?

非常感谢

4

1 回答 1

4

使用强制打印:

 <?!= getHtml() ?>

如此所述。

于 2013-02-06T13:22:09.233 回答