2016-05-11 141 views
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() 

回答

0

此XPath

response.xpath("//span[contains(., 'beteiligter Wissenschaftler')]/following-sibling::span[@class='value']/a/text()").extract() 

回報教授陣列。第一個是Professor Dr. Michael Eiermann

+0

@DaniiilMashkin sel.xpath聲明(Projekttitel),保持不變? – user3786117

+0

不,xpath返回字符串數組,您不需要使用另一個xpath。 –