python - Scrapy中xpath用到中文報錯
大家讲道理
大家讲道理 2017-06-30 09:55:44
0
2
1455

問題描述

links = sel.xpath('//i[contains(@title,"置顶")]/following-sibling::a/@href').extract()

錯誤:ValueError: All strings must be XML compatible: Unicode or ASCII, no NULL bytes or control characters

大家讲道理
大家讲道理

光阴似箭催人老,日月如移越少年。

全部回覆(2)
学习ing

請參考文章:解決Scrapy中xpath用到中文報錯問題

解決方法

方法一:將整個xpath語句轉換成Unicode

links = sel.xpath(u'//i[contains(@title,"置顶")]/following-sibling::a/@href').extract()

方法二:xpath語句用已轉換成Unicode的title變數

title = u"置顶"
links = sel.xpath('//i[contains(@title,"%s")]/following-sibling::a/@href' %(title)).extract()

方法三:直接用xpath中變數語法($符號加變數名)$title, 傳參title即可

links = sel.xpath('//i[contains(@title,$title)]/following-sibling::a/@href', title="置顶").extract()
ringa_lee

整個字串前加個u試試

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板