• HTTP请求中Content-Type的取值讲解


      在Http请求中,我们每天都在使用Content-type来指定不同格式的请求信息(MediaType),下面先看看请求信息的定义,MediaType,即Internet Media Type,互联网媒体类型;也叫做MIME类型,在Http协议消息头中,使用Content-Type来表示具体请求中的媒体类型信息,例如: Content-Type: text/html;charset:utf-8; 。本文将讲解Content-Type的可用值。

    1. 常见的媒体格式类型:

      text/html : HTML格式
      text/plain :纯文本格式
      text/xml :XML格式
      image/gif :gif图片格式
      image/jpeg :jpg图片格式
      image/png:png图片格式

    2. 以application开头的媒体格式类型:

      application/json : JSON数据格式
      application/pdf :pdf格式
      application/msword : Word文档格式
      application/octet-stream : 二进制流数据(如常见的文件下载)
      application/x-www-form-urlencoded 应用于表单,form表单数据被编码为key/value格式发送到服务器(表单提交数据的默认格式)
      application/xml : XML数据格式
      application/atom+xml :Atom XML聚合格式

    3. 当在表单中需要上传文件的时候,使用的媒体格式类型是:multipart/form-data

      以上就是我们在日常的开发中,经常会用到的若干content-type的内容格式。更多详细信息请查看类org.springframework.http#MediaType。

    Reference

    https://www.cnblogs.com/zh718594493/p/12115579.html

  • 相关阅读:
    洛谷—— P3353 在你窗外闪耀的星星
    洛谷—— P1238 走迷宫
    洛谷—— P1262 间谍网络
    9.8——模拟赛
    洛谷—— P1189 SEARCH
    算法
    May 22nd 2017 Week 21st Monday
    May 21st 2017 Week 21st Sunday
    May 20th 2017 Week 20th Saturday
    May 19th 2017 Week 20th Friday
  • 原文地址:https://www.cnblogs.com/east7/p/13939402.html
Copyright © 2020-2023  润新知