我在parse函数下像平时一样使用xpath语句,结果得到的不是想要的文本信息,而是:"<Selector xpath='//div[@class=\"photo-info\"]/span[@class=\"pb-10\"]/text()' data='想要的文本信息'>"在单独的py文件中运行就可以得到该文本信息,这是问什么呢?部分代码如下:def parse(self, response): self.actress_name = response.xpath('//div[@class="photo-info"]/span[@class="pb-10"]/text()')[0] le = LinkExtractor(restrict_xpaths='//*[@class="item"]/a') for link in le.extract_links(response): yield Request(link.url,callback=self.parse_detail)
添加回答
举报
0/150
提交
取消