Python 当使用scrapy从网站抓取文本时,它将抓取所有内容,但不会抓取链接内容,如何解决该问题

Python 当使用scrapy从网站抓取文本时,它将抓取所有内容,但不会抓取链接内容,如何解决该问题,python,web-scraping,scrapy,Python,Web Scraping,Scrapy,当爬网数据完整内容未爬网时,此处不爬网标记内容,以及如何一次爬网标记href Html.code <p class="gnt_ar_b_p"> 24/7 Tempo has compiled a list of drugs in short supply from information provided by the <p class="gnt_ar_b_p"> However, drugs are frequently announced to be i

当爬网数据完整内容未爬网时,此处不爬网标记内容,以及如何一次爬网标记href

Html.code

<p class="gnt_ar_b_p">
24/7 Tempo has compiled a list of drugs in short supply from information provided by the 
   <p class="gnt_ar_b_p">
   However, drugs are frequently announced to be in short supply. In 
   fact, the FDA has a running list of drug shortages due to anything from increasing demand 
   to regulatory factors as well as supply disruptions.
   </p>
  <a href="https://www.accessdata.fda.gov/scripts/drugshortages/default.cfm" data-t- 
   l="|inline|intext|n/a" class="gnt_ar_b_a">
   Food and Drug Administration</a>.
</p>
输出

24/7 Tempo has compiled a list of drugs in short supply from information provided by the 
However, drugs are frequently announced to be in short supply. In 
fact, the FDA has a running list of drug shortages due to anything from increasing demand 
to regulatory factors as well as supply disruptions.

response.css('p.gnt\u ar\u b\p')
在这里,我认为您只需选择
p.gnt\u ar\u b\p
元素。尝试删除
p
标记。我尝试了,但也没有得到文本。
24/7 Tempo has compiled a list of drugs in short supply from information provided by the 
However, drugs are frequently announced to be in short supply. In 
fact, the FDA has a running list of drug shortages due to anything from increasing demand 
to regulatory factors as well as supply disruptions.