这让我发疯。我的doGet函数中包含以下代码:
function doGet() {
Logger.log(CalendarApp.getCalendarById(CALENDAR_ID));
//CalendarApp.getCalendarById(CALENDAR_ID)
return ContentService.createTextOutput("dfgfgfd");
}
我确实发布了具有新版本的应用程序(到目前为止,可能已完成6次,共6次)。我在浏览器中使用URL(同时尝试了dev和exec)打开该应用程序,并返回“脚本已完成,但未返回任何内容”。
如果doGet
中有明确的return语句,它将如何不返回任何内容。我有什么想念吗?