码迷,mamicode.com
首页 > 其他好文 > 详细

Content-Type小解

时间:2016-11-12 23:21:32      阅读:199      评论:0      收藏:0      [点我收藏+]

标签:图片格式   键值   使用   html   http   区别   encode   ima   pdf   

在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: 当在表单提交中进行文件上传时,必须使用此格式

 

Content-Type小解

标签:图片格式   键值   使用   html   http   区别   encode   ima   pdf   

原文地址:http://www.cnblogs.com/yanze/p/6057572.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!