4

在我的国家/地区,某些站点已被过滤,例如docs.google.com,bbc.co.ukfacebook

Form我在谷歌文档中创建了一个。当我iframe在我的网站中嵌入表单时,我所在国家/地区的用户无法查看From.

出于这个原因,我获取源 HTML google form,然后插入到我的站点。现在我国家的用户可以查看表单,但是当他们点击时Submit,数据表单无法发送到 google docs,因为 google docs url 被过滤了!我的服务器站点在美国。

我可以从用户那里获取数据表单,然后使用服务器(使用 POST 方法)将表单发送到谷歌文档吗?

例如我的表单代码是这样的:

<form action="https://docs.google.com/forms/d/1B_p03NcbwnGRFAiAy0YoEPFckDELH1I-p71_2Kgq6_A/formResponse" method="POST" id="ss-form" target="_self" onsubmit="">
    Your Name: <input type="text" name="entry.278240263" value="" class="ss-q-short" id="entry_278240263" dir="auto" aria-required="true" required="" title="">
    <input type="submit" name="submit" value="Submit" class="button" id="ss-submit">
</form>

我需要https://docs.google.com/forms/d/1B_p03NcbwnGRFAiAy0YoEPFckDELH1I-p71_2Kgq6_A/formResponse通过 Json 将数据表单发送到服务器

4

1 回答 1

4

你当然可以。看看:https ://wiki.base22.com/pages/viewpage.action?pageId=72942000 有一节描述了如何通过 ajax 从 javascript 将数据发布到 google 文档,但在 php 中应该类似

于 2013-08-16T13:50:02.383 回答