@[toc]
1、报错内容
ValueError: Unicode strings with encoding declaration are not supported. Please use bytes input or XML fragments without declaration.
我的代码:报错定位到是html = etree.HTML(resp_text)
解析页面,但是我页面打出来,是没有问题的。
resp_text = resp.text
html = etree.HTML(resp_text)
最后我用笨方法,翻译一下,看看具体意思就是传如的有问题
然后我开始使用:
resp_text = resp.content
html = etree.HTML(resp_text)
结果还是不行,后来多次找原因,改成resp.content.decode(“utf-8”)什么都不行,
后来代码改为下面这个就好了:
resp_text = resp.text
html = etree.HTML(resp_text.encode('utf-8'))
这样就好了,之前直接传入resp.text是没有问题的,这样的我也是第一次遇到,所以记录下来,标题页和错误前面一致,希望帮助到需要的你。
如果觉得帮助到你,希望给我点个赞哈(只想给自己的努力多打打气?)