2017-06-05 164 views
0

我在嘗試使用Google Apps腳本web應用程序。我剛剛拿到了側邊欄工作,他們是非常有用的,但是當我嘗試做一個簡單的Web應用程序,該代碼顯示在應用程序,而不是執行: enter image description here enter image description here enter image description here enter image description hereGoogle Apps腳本Web應用程序無法正常工作

它必須是什麼簡單,但當你知道如何時,它總是很簡單。

感謝您的任何幫助。 〜

回答

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> 
+0

謝謝你這一點 - 它幫助我得到工作的一個基本的腳本。從這裏開始。 :-) – MrGreggles

相關問題