首页 > 其他 > 详细

[ 转 ] scrapy 中解决 xpath 中的中文编码问题

时间:2016-12-18 01:36:18      阅读:1047      评论:0      收藏:0      [点我收藏+]

 

 

1、问题描述:

      实现定位<h2>品牌</h2>节点

      brand_tag = sel.xpath("//h2[text()= ‘品牌‘]")

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

2、解决方法:

   (1)brand = u‘品牌‘
           brand_tag = sel.xpath("//h2[text()= ‘%s‘]"%(brand))

   (2)brand_tag = sel.xpath(u"//h2[text()= ‘品牌‘]")

 
 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

http://blog.csdn.net/zcc_0015/article/details/52274996

 

[ 转 ] scrapy 中解决 xpath 中的中文编码问题

原文:http://www.cnblogs.com/jijizhazha/p/6193442.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!