我正在尝试从此DOM中刮出“ Piza,Italian”字样:
我尝试使用:
restaurants = response.css('.restaurant-content')
for restaurant in restaurants:
name = restaurant.css('.serpItemList-Title::text').extract()
cuisine = restaurant.css('infoText.infoText--primary.listing-item--cuisineText::text').extract()
正在检索每个餐厅的名称,没有任何问题,但是根本不会检索/填充美食。
我该如何找回美食?
注意我想在没有xpath的情况下实现此功能,因为我需要遍历每家餐厅的每种美食,而xpath不支持此功能,它仅在DOM中占据一个特定的位置。
谢谢。