Google应用脚本html模板问题

时间:2013-02-06 13:06:24

标签: google-apps-script

如何在google apps脚本的html模板中使用在字符串中返回html的函数?

例如,这是我的code.gs:

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

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

在我的html文件'test.html'中我有以下内容:

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

你会看到结果是这样的:

enter image description here

如何更改此设置,以便以粗体显示hello,而不显示标签?

非常感谢

1 个答案:

答案 0 :(得分:4)

使用强制打印:

 <?!= getHtml() ?>

解释here