HTML表单元素可以POST到URL,并且可能包含输入元素,但是这些输入元素可以变成查询字符串.
如何获取一个表单,以便在按下它的提交按钮时发送的HTTP POST请求的正文中发送数据?
解决方法
The HTTP spec says that a POST request can contain an arbitrary body of data.
这是对的然而,数据的格式又有几个规格.在HTML表单的情况下,最常用的是application / x-www-form-urlencoded,其次是multipart / form-data.您可以通过HTML< form>的enctype属性进行设置.元件.另见HTML规范的第17.13.4 Form Content Types章.
An HTML form element can POST to a URL and may contain input elements,but those input elements get turned into a query string.
这的确是应用程序/ x-www-form-urlencoded的工作原理.请注意,这个查询字符串实际上代表整个HTTP请求体!所以请求机构绝对不是空的,因为你似乎认为.
How can I get a form to also send along data in the body of the HTTP POST request that it sends when its submit button is pressed?
它实际上已经这样做了.如果您打算发送表单本身的HTML DOM树表示的副本,如以前的语句中所示,则可以通过以下JavaScript的一点帮助来实现:
<form onsubmit="this.source.value=this.outerHTML"> ... <input type="hidden" name="source" /> <input type="submit" /> </form>
表单的整个HTML DOM树表示形式的字符串格式可用作具有名称来源的请求参数.