只需要將
for href in response.xpath('XX').extract(): yield Request(hrefs)
修改為下面,就可以顯示出來
for href in response.xpath('XX').extract(): hrefs = response.urljoin(href) yield Request(hrefs)
感謝這個
找了很久。
只需要將
for href in response.xpath('XX').extract(): yield Request(hrefs)
修改為下面,就可以顯示出來
for href in response.xpath('XX').extract(): hrefs = response.urljoin(href) yield Request(hrefs)
感謝這個
找了很久。
本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。