Content-Type小解

时间:2022-12-22 16:11:55

在Http请求中,经常用Content-Type来定义网络文件的类型和网页的编码,在发送请求,返回数据时决定浏览器将以什么形式,什么编码来读取此文件。

常用类型:

text 文本类型

1.text/plain: 纯文本类型(plain:完全的)

2.text/xml: XML格式

3.text/html: HTML格式

image 图片类型

image/jpeg: jpg图片格式image/png: png图片格式

image/gif: gif图片格式

application

application/x-www-form-urlencoded: 表单提交中默认的提交方式 eg: <form encType= "x-www-form-urlencoded"></form> 表单内的数据将以键值对的格式发送到服务器

application/octet-stream: 二进制流数据(文件下载时多用) (octet 8字节)

application/json: JSON数据格式

application/xml: XML数据格式 (与text/xml 类似,区别在于text/html忽略xml文件头指定的编码方式而采用ASCII编码,application/xml则会按照xml指定的编码方式编码)

application/xhtml+xml: XHTML格式

application/atom+xml: Atom XML聚合格式

application/pdf:       pdf格式

application/msword:  Word文档格式

另外:

multipart/form-data: 当在表单提交中进行文件上传时,必须使用此格式