在我的国家/地区,某些站点已被过滤,例如docs.google.com
,bbc.co.uk
等facebook
。
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 将数据表单发送到服务器