scrapy xpath遇见乱码解决
首先查看页面的编码模式
response.encoding
显示为'cp1252'
response.xpath("//title/text()").getall()[0].encode('cp1252').decode('gbk')
解决。
你可能想看:
首先查看页面的编码模式
response.encoding
显示为'cp1252'
response.xpath("//title/text()").getall()[0].encode('cp1252').decode('gbk')
解决。