Google Apps“未知宏doGet”

时间:2012-08-08 00:08:16

标签: templates google-apps-script

每次从https://developers.google.com/apps-script/html_service部署“从数据中提取数据到”模板中的练习时,我都会收到消息“Unknown macro doGet”

本练习中没有函数(宏)doGet。在PRIOR练习中“将数据拉入模板”

本练习的功能是:

function getData(){ return SpreadsheetApp.openById('fileID')。getRangeByName('dataRange')。getValues(); }

但每次我部署时都说“未知的宏doGet”

为什么这个脚本仍然在另一个脚本中回顾之前的doGet?我怎样才能解决这个问题?感谢。

2 个答案:

答案 0 :(得分:0)

这不是一个完整的示例脚本。它只是前一个剧本的点缀。您仍然需要在每个HtmlService应用程序中使用doGet,而前一个示例中的那个应该是您在此处使用的脚本的一部分。

答案 1 :(得分:0)

谢谢Cory G.所以你还必须有一个包含这段代码的.gs。

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