def parse_tag_per_page(self, response):
links = response.xpath("//ul[@class = 'subject-list']/descendant::a[@class = 'nbg']/@href").extract()
for book in links:
yield scrapy.Request(book, callback=self.parse_book)
# ???????????????BookItem
评论列表
文章目录