2017-04-13 46 views
0

我覺得我完全錯過了如何從函數調用返回到doGet()Google appscript的結果。請任何人都可以建議我做錯了什麼。Google Appscript doGet()不返回參數,但返回web應用程序的html

使用HTTP GET請求我回來的是從應用程序的整個HTML內容和doGet()尚未執行。

我的doGet()看起來像這樣。

function doGet(e) { 
    var params = JSON.stringify(e); 
    return HtmlService.createHtmlOutput(params); 
} 

返回的數據如下所示。

enter image description here

回答

1

我認爲你正在尋找ContentService,而不是HtmlService

沿着這個東西線:

function doPost(e) { 
    return ContentService.createTextOutput(JSON.stringify(e)) 
} 

HtmlService將輸出一個HTML頁面

授權 此外,請確保您「任何人甚至匿名」都可以運行在「發佈>部署> Web應用程序」窗口下選擇的Web應用程序選項。

相關問題