http 请求中请求头content-type讲解.txt

参考:https://www.cnblogs.com/Im-Victor/p/9408449.html

在Http请求中,我们每天都在使用Content-type来指定不同格式的请求信息,
这里将讲解Content-Type的可用值。
MediaType,即是Internet Media Type,互联网媒体类型;
也叫做MIME类型,在Http协议消息头中,使用Content-Type来表示具体请求的媒体类型信息。
例如: Content-Type: text/html;charset:utf-8;
web.header('content-type', 'text/json; charset=utf-8')

常见的媒体格式类型如下:
1.text/html: HTML格式
2.text/plain: 纯文本格式
3.text/xml: XML格式
4.image/gif: gif图片格式
5.image/jpeg: jpg图片格式
6.image/png: png图片格式

以application开头的媒体格式类型:
1.application/xhtml+xml: XHTML格式
2.application/xml: XML数据格式
3.application/atom+xml: Atom XML聚合格式
4.application/json: JSON数据格式
5.application/pdf: pdf格式
6.application/msword: Word文档格式
7.application/octet-stream: 二进制流数据(如常见的文件下载)
8.application/x-www-form-urlencoded:
<form encType=””>中默认的encType,form表单数据被编码为key/value格式发送到服务器(表单默认的提交数据的格式)

另外一种常见的媒体格式是上传文件之时使用的:
1.multipart/form-data: 需要在表单中进行文件上传时,就需要使用该格式


发布了198 篇原创文章 · 获赞 58 · 访问量 8万+

猜你喜欢

转载自blog.csdn.net/weixin_42193179/article/details/103974027