HTTP--content-type
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HTTP--content-type</title>
</head>
<body>
<script>
/*
HTTP--content-type
Content-Type(内容类型),一般是指网页中存在的 Content-Type,
用于定义网络文件的类型和网页的编码,决定浏览器将以什么形式、什么编码读取这个文件,
这就是经常看到一些 PHP 网页点击的结果却是下载一个文件或一张图片的原因。
Content-Type 标头告诉客户端实际返回的内容的内容类型。
*/
/*
1 常见的媒体格式类型如下:
1.1 text/html : HTML格式
1.2 ext/plain :纯文本格式
1.3 text/xml : XML格式
1.4 image/gif :gif图片格式
1.5 image/jpeg :jpg图片格式
1.6 image/png:png图片格式
2.以application开头的媒体格式类型:
2.1 application/xhtml+xml :XHTML格式
2.2 application/xml: XML数据格式
2.3 application/atom+xml :Atom XML聚合格式
2.4 application/json: JSON数据格式
2.5 application/pdf:pdf格式
2.6 application/msword : Word文档格式
2.7 application/octet-stream : 二进制流数据(如常见的文件下载)
2.8 application/x-www-form-urlencoded : <form encType=””>中默认的encType,form表单数据被编码为key/value格式发送到服务器(表单默认的提交数据的格式)
3.另外一种常见的媒体格式是上传文件之时使用的:
3.1 multipart/form-data : 需要在表单中进行文件上传时,就需要使用该格式
*/
</script>
</body>
</html>


浙公网安备 33010602011771号