我想从 beteiliger Wissenschaftler 类别中提取以下链接http://gepris.dfg.de/gepris/projekt/268853字符串 Michael Eiermann教授。 Xpath查询必须如何正确。从输出中我得到String Fachliche Zuordnung
带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 :(得分:0)
此xpath
response.xpath("//span[contains(., 'beteiligter Wissenschaftler')]/following-sibling::span[@class='value']/a/text()").extract()
返回教授数组。第一个是Professor Dr. Michael Eiermann