1.Content-Type的作用是什么?
通常用于头部标签中,用于指示资源的类型
在响应中,Content-Type标头告诉客户端实际返回的内容的内容类型。浏览器会在某些情况下进行MIME查找,并不一定遵循此标题的值; 为了防止这种行为,可以将标题 X-Content-Type-Options 设置为 nosniff。
在请求中 (如POST 或 PUT),客户端告诉服务器实际发送的数据类型。
1)Content-Type: multipart/form-data;
2)Content-Type: text/html;
3)Content-Type: application/json;