码迷,mamicode.com
首页 > Web开发 > 详细

scrapy抓取某些网站出现AttributeError_ object has no attribute 的解决办法的代码.txt

时间:2019-07-28 09:17:10      阅读:453      评论:0      收藏:0      [点我收藏+]

标签:代码   rap   sele   llb   error:   code   也有   tee   ons   

把写内容过程中经常用的内容段备份一下,下面的内容内容是关于scrapy抓取某些网站出现AttributeError: 'Response' object has no attribute 'body_as_unicode'的解决办法的内容,应该是对码农们也有用。

 

def parse(self, response):
hxs=Selector(response)

for url in detail_url_list:
if ‘goods‘ in url:
yield Request(url, callback=self.parse_detail)





写成下面这个样子即可



def parse(self, response):
hxs=Selector(text=response.body)

for url in detail_url_list:
if ‘goods‘ in url:
yield Request(url, callback=self.parse_detail)





注意这句话:hxs=Selector(text=response.body)





scrapy抓取某些网站出现AttributeError_ object has no attribute 的解决办法的代码.txt

标签:代码   rap   sele   llb   error:   code   也有   tee   ons   

原文地址:https://www.cnblogs.com/gladiolus/p/11257632.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!