0
我要在以下鏈接http://gepris.dfg.de/gepris/projekt/268853字符串邁克爾博士教授Eiermann從類別beteiliger Wissenschaftler提取。 Xpath查詢必須如何正確。從輸出我得到的字符串Fachliche ZuordnungXpath查詢與scrapy
代碼段使用XPath查詢:
start_urls =['http://gepris.dfg.de/gepris/projekt/268853',]
def parse(self, response):
for sel in response.xpath("//*[contains(@class,'content_frame')]/*[@id='projektbeschreibung']"):
lianjia = lianjiaItem()
lianjia['Projekttitel'] = sel.xpath("//div/div/span/text()").extract()
@DaniiilMashkin sel.xpath聲明(Projekttitel),保持不變? – user3786117
不,xpath返回字符串數組,您不需要使用另一個xpath。 –