标签:文章 style com ref ati 沧海 .com 例子 head
http协议中,post方法用来向服务端提交数据, 这里介绍四种方式:
由于是在http协议下工作,这里先看下http协议的样子。
http协议的特点:
<method> <request-URL> <version>
<headers>
<entity-body>
协议规定post提交数据需要放在消息体中,但并没有限定编码方式。服务器可以通过消息头中的Content-Type属性来获知消息体中
数据的编码方式,文章一开始说的四种方式,其实就是四种Content-Type。
一、Content-Type:application/x-www-form-urlencoded
最常见的方式,例子如下:
POST http://www.example.com HTTP/1.1 Content-Type: application/x-www-form-urlencoded;charset=utf-8 title=test&sub%5B%5D=1&sub%5B%5D=2&sub%5B%5D=3
未完待续 。。
主要参考文章:
【1】四种常见的 POST 提交数据方式 专题 by 沧海一滴
标签:文章 style com ref ati 沧海 .com 例子 head
原文地址:http://www.cnblogs.com/tlz888/p/7015589.html