Content-Type 是用于指定 HTTP请求或HTTP响应中主体数据的媒体类型(Media Type)或 MIME 类型(Multipurpose Internet Mail Extensions)。它通常作为请求头(Request Header)或响应头(Response Header)的一部分,用于描述HTTP报文传输的数据类型。 MIME 类型 总的可以划分为: application/* audio/* chemical/* image/* ima...
"video/mpegurl": "M3U8|M3U", "video/mpg4": "MP4|M4V", "video/msvideo": "AVI", "video/quicktime": "MOV|QT", "video/webm": "WEBM", "video/x-flash-video": "FLV", "video/x-flv": "FLV", "video/x-mp4": "MP4|M4V", "video/x-mpegurl": "M3U8|M3U", "video/x-mpg4": ...
Content-Type: application/octet-stream (binary data) 10.audio/mpeg 表示MPEG 音频。 Content-Type: audio/mpeg (binary data) 11.video/mp4 表示MP4 视频。 Content-Type: video/mp4 (binary data) 12.text/css 表示CSS样式表。 Content-Type: text/css; charset=utf-8 body { background-color: lightbl...
application/x-www-form-urlencoded : 中默认的encType,form表单数据被编码为key/value格式发送到服务器(表单默认的提交数据的格式) 另外一种常见的媒体格式是上传文件之时使用的: multipart/form-data : 需要在表单中进行文件上传时,就需要使用该格式 HTTP content-type 对照表 文件扩展名Content-Type(Mime-Type)...
HTTP content-type Content-Type(内容类型),一般是指网页中存在的 Content-Type,用于定义网络文件的类型和网页的编码,决定浏览器将以什么形式、什么编码读取这个文件,这就是经常看到一些 PHP 网页点击的结果却是下载一个文件或一张图片的原因。 Content-Type 标头告诉客户端实际返回的内容的内容类型。
video/mp4:MP4 视频 video/mpeg:MPEG 视频 2.常用类型 由于content-type类型众多,本文只挑几个开发中经常使用的类型来介绍. 2.1.application/x-www-form-urllencoded application/x-www-form-urllencoded,HTML 表单默认的编码方式,之所以用这种方式而不用json是因为json的数据结构可能会很复杂,需要额外的解析动作。
1 Content-Type的格式 Content-Type的格式 由三部分组成,主类型type, 子类型subtype, 可选参数parameter Content-Type:type/subtype ;parameter type:主类型,任意的字符串,如text,如果是*号代表所有; subtype:子类型,任意的字符串,如html,如果是*号代表所有,用“/”与主类型隔开; ...
1 ,http content-type与文件类型的对应关系 ".*"="application/octet-stream" ".001"="application/x-001" ".301"="application/x-301" ".323"="text/h323" ".906"="application/x-906" ".907"="drawing/907" ".a11"="application/x-a11" ...
常见Content-type类型 在HTTP协议消息头中,使用Content-Type来表示媒体类型信息。它被用来告诉服务端如何处理请求的数据,以及告诉客户端(一般是浏览器)如何解析响应的数据,比如显示图片,解析html或仅仅展示一个文本等。 Post请求的内容放置在请求体中,Content-Type定义了请求体的编码格式。数据发送出去后,还需要接收端解...
Application Type 文件扩展名 Content-Type(Mime-Type) 描述 . application/x- .* application/octet-stream 二进制流,不知道下载文件类型 .pdf application/pdf PDF(Portable Document Format的简称,意为“便携式文件格式”) .ai application/postscript PostScript(PS)是主要用于电子产业和桌面出版领域的一种页面描述...