美文网首页python基础与开发http
Accept与Content-Type的区别

Accept与Content-Type的区别

作者: 修行者12138 | 来源:发表于2020-11-09 20:43 被阅读0次

    1.Content-Type可以放在request headers,也可以放在response headers,分别表示客户端/服务端本次发送的数据类型
    2.Accept表示客户端希望接收的数据类型

    下图中,客户端Accept设置为*/*,即接收任意数据类型,服务端使用默认的ISO-8859-1字符集返回数据,导致客户端接收到的文字为乱码

    postman.png image.png

    客户端设置Accept为text/plain;charset=UTF-8后,乱码解决


    ok.png

    相关文章

      网友评论

        本文标题:Accept与Content-Type的区别

        本文链接:https://www.haomeiwen.com/subject/zwxsbktx.html