每次从https://developers.google.com/apps-script/html_service部署“将数据提取到模板”中的练习时,我都会收到消息“未知宏 doGet”
本练习中没有函数(宏)doGet。之前的练习中有“将数据拉入模板”
本练习的功能是:
function getData() { return SpreadsheetApp.openById('fileID').getRangeByName('dataRange').getValues(); }
但是每次我部署它时都会显示“未知宏 doGet”
为什么这个脚本仍然在另一个脚本中回顾之前的 doGet?我怎样才能解决这个问题?谢谢。