0

我正在尝试从某个部分的网站源代码中提取文本。

我试图提取的网站的源代码如下所示:

if ('function' === typeof window.ToggleFilters) {
    window.ToggleFilters();
}
</script>

<main id="main" data-danger="">

<section data-creation-date="2018-10-15 11:35:06">

    <div class="detail__content">

我已经尝试通过 response.css 和 response.xpath 尝试通过 scrapy shell 从源代码中获取数据,但没有运气。

response.xpath("//*[contains('data-creation')]")

我想只提取数据创建日期,所以它看起来像

'2018-10-15 11:35:06'
4

1 回答 1

2
response.css('#main section::attr("data-creation-date")').extract_first()

或者

response.xpath("//@data-creation-date").extract_first()

或者

response.xpath("//main/section/@data-creation-date").extract_first()
于 2019-02-10T03:42:54.810 回答