在Google Scripts中创建变量并在HTML代码中使用它

时间:2017-12-30 01:38:16

标签: javascript html google-apps-script google-sheets

有没有办法在Google Scripts HTML Code中使用变量?现在我有:

var activeUser = Session.getActiveUser()
app.add(app.createHTML("<h1>Hello, activeUser </h1>"));

这不起作用。有没有办法让这项工作?谢谢!

1 个答案:

答案 0 :(得分:0)

你是说这样的意思吗?

var activeUser = Session.getActiveUser()
app.add(app.createHTML("<h1>Hello, " + activeUser + "</h1>"));