在Google Apps脚本中将表单提交到不同的服务器

时间:2012-10-26 06:27:30

标签: google-apps-script

我正在关注HtmlService documentation创建表单并自动提交表单以向其他服务器发送请求。

我创建了类似的东西:

return HtmlService.createHtmlOutput(
    "Loading.. <form action='http://xyz.com/abc' method='post' id='foo' />
    <input type='hidden' name='data' value='xyz' />  
    <script>document.getElementById('foo').submit(); </script>" ) 

最初工作正常,但现在代码运行后,表单不会自动提交。将显示空白页面(带有单词加载),不会重定向。我是否可以知道如何在页面加载时自动提交表单,以便将请求发送到具有所需数据的其他服务器。

1 个答案:

答案 0 :(得分:0)

现在在Issue Tracker跟踪#1995。我尝试了一些解决方法,比如使用jQuery ready函数,自动单击提交按钮或setTimeouts但不起作用。请为问题加注星标,以便跟踪此问题。