标签: python scrapy
如何表达
item[field_name]=response.xpath('//*[@calss="title name "]/a/span').xpath('string(.)')
进入这个?
l=ItemLoader(item=ConccreseItem(),response=response) l.add_xpath('field_name','//*[@class="title name"]/a/span')
如何将.string('。')添加到第二个表达式中?