如何在POST请求中模仿HTML表单提交?

时间:2011-12-07 14:48:28

标签: http post html-form html-form-post

我有HTML表单,用于从应用程序向服务器发送bug报告。我需要以编程方式模仿这种行为。相应的POST请求(或一系列请求)是什么样的?

<form name="bugreport" method="post" enctype="multipart/form-data" action="http://my-server.com/bugreport.php">
    <div name="SentData">
        <textarea name="logfile" class="UserVisible"></textarea><br>
        <textarea name="configfile" class="UserVisible"></textarea><br>
    </div>
    <textarea name="usercomment" class="invisible"></textarea><br>
    <input name="useremail" type="text" class="invisible">
    <input class="invisible" type="submit" value="Send">
</form> 

1 个答案:

答案 0 :(得分:42)

POST请求包含许多标头和请求正文。当您提交表单时,浏览器URL encodes所有表单字段的名称和值,然后以这种格式将它们放入请求正文中:

fieldname1=fieldvalue1&fieldname2=fieldvalue2

即。请求正文看起来像一个典型的查询字符串。


以下是您的表单的请求:

POST /bugreport.php HTTP/1.1
Host: www.example.com
Content-Type: application/x-www-form-urlencoded
Content-Length: [size of the request body]

logfile=blabla&configfile=more+blabla&usercomment=hello&useremail=

要确保您的程序符合浏览器的功能,您可以使用Firefox发布表单,然后使用Firebug的网络面板检查请求标题和正文。