http帖子请求的标题和正文如何?

时间:2013-05-17 21:07:49

标签: http url post

假设我有first=Johnlast=Doe以及以下网址:http://<myurl>/<my controller>

接收HTTP Post的客户端的HTTP消息(标题和正文)如何?

1 个答案:

答案 0 :(得分:1)

如下所示。您可以使用firebug浏览器插件来检查原始HTTP通信。您还可以read this article了解更多详情。

POST /mycontroller HTTP/1.1  
Host: localhost  
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.5) Gecko/20091102 Firefox/3.5.5 (.NET CLR 3.5.30729)  
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8  
Accept-Language: en-us,en;q=0.5  
Accept-Encoding: gzip,deflate  
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7  
Connection: keep-alive
Content-Type: application/x-www-form-urlencoded  
Content-Length: 20  

first=John&last=Doe