爬虫提交form表单中含有(unable to decode value)解决方法

在一次抓取网站的过程中,使用chrome调试时,发现一个参数为:(unable to decode value),经过多方尝试,发现是网页编码问题,在返回的网页源代码中可以看到该网站编码为GBK,

content="text/html;charset=GBK"

这里只需要使用python的encode方法将编码转换即可

 company_name = "科技有限公司"
 company_name = company_name.encode("GBK")
    原文作者:Chen_Yakun
    原文地址: https://segmentfault.com/a/1190000018343342
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞