最新回答 / 落辉
def parse(self, response): #具体怎么转,要看你的编码的 response=response.replace(encoding="gbk")
2018-12-03
最新回答 / iYun
在for中,douban_item['introduce'] = content_s 这条语句赋值的是局部变量的地址,for之外,content_s值被清除了,所以指向该地址的douban_item['introduce']的值也被清除了。应该是这个原因。
2018-11-29