码迷,mamicode.com
首页 > 其他好文 > 详细

response.text与content的区别

时间:2019-12-12 14:39:16      阅读:326      评论:0      收藏:0      [点我收藏+]

标签:tps   csdn   css   art   block   返回   str   lin   服务器   

在某些情况下来说,response.text 与 response.content 都是来获取response中的数据信息,效果看起来差不多。那么response.text 和 response.content 到底有哪些差别 ? 什么情况下该用 response.text 什么情况下该用 response.content ?

  • 返回的数据类型
    response.text 返回的是一个 unicode 型的文本数据
    response.content 返回的是 bytes 型的二进制数据
    也就是说如果想取文本数据可以通过response.text 如果想取图片,文件,则可以通过 response.content

  • 数据编码
    response.content 返回的是二进制响应内容
    response.text 则是默认”iso-8859-1”编码,服务器不指定的话是根据网页的响应来猜测编码。

response.text与content的区别

标签:tps   csdn   css   art   block   返回   str   lin   服务器   

原文地址:https://www.cnblogs.com/hui-code/p/12028832.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!