常见的 content_type 媒体格式

root
abc abc
  • 9 Jul

常见的 content_type 媒体格式,如下所示:
text/html : HTML 格式
text/plain :纯文本格式
text/xml : XML 格式

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

application/xhtml+xml :XHTML 格式
application/xml: XML 数据格式
application/atom+xml :Atom XML 聚合格式
application/json: JSON 数据格式
application/pdf:pdf 格式
application/msword :Word 文档格式
application/octet-stream : 二进制流数据(如常见的文件下载)
application/x-www-form-urlencoded :form 表单数据被编码为 key/value 格式发送到服务器(表单默认的提交数据的格式)。

multipart/form-data : 需要在表单中进行文件上传时,就需要使用该格式