0

我似乎无法在我的简单 web 应用程序中访问 URL 参数。从文档看起来很简单:

function doGet(e) {
  var foo = (e.parameters.test);
  return ContentService.createTextOutput("Test: " + foo);    
}

但是,当我使用“我的最新代码”开发人员链接或已部署的版本运行 web 应用程序时,foo 不断返回为“未定义”。

我还注意到,当页面加载我最后添加的 URL 参数时消失了。

网址如下所示:

https://script.googleusercontent.com/a/macros/mysite.com/echo?user_content_key=superlongstring&lib=otherstring&test=helloworld

4

1 回答 1

4

您应该在脚本 URL 重定向之前添加参数。

所以它应该看起来像 -

https://script.google.com/macros/s/longstring/exec?test=helloworld

在此处输入图像描述

重定向的 URL 仅用于输出,不可重复使用,也不会触发任何新的处理。

于 2013-01-29T19:28:33.967 回答