Content-Type介绍
请求头中的Content-Type
- 作用: 告诉服务器实际发送的数据类型
- 常见类型:
- application/x-www-form-urlencoded;
- multipart/form-data; 常用于上传文件, 支持二进制格式
- application/json;
- text/plain; 很少用
响应头中的Content-Type
- 告诉客户端实际返回的内容的内容类型
- 常见类型:
- application/json;
- text/html;
- text/plain;
- image/png;
- application/octet-stream; 文件下载