CheerioJS和刮刮的一些问题

时间:2019-05-17 19:49:13

标签: javascript web-scraping cheerio

我用cheerio报废了html,我想从中获取class =“ title” ...该怎么办?我尝试了很多方法,但是在console.log之后,它返回null。

<div class="beatmap" id="914524" style="width:420px;">
    <div class="bmlistt" style="background: 
        url(&quot;//b.ppy.sh/thumb/914524.jpg&quot;)">
        <i class="icon-play"></i>
    </div>

    <div class="bmlist-options" style="display: none; overflow: hidden; width: 24px;">
        <a href="#"><i class="icon-heart"></i></a>
        <a href="/forum/t/858871"><i class="icon-comments"></i></a>
        <a class="require-login beatmap_download_link" href="/d/914524"><i class="icon-download-alt"></i></a>
    </div>

    <div class="maintext" stop="1">
        <span class="artist">ZUN</span>
        <a href="/s/914524" class="title">Haru no Minato ni</a>
    </div>
</div>

这是报废的代码。告诉我如何将class =“ title”抓取到控制台并转换为文本。

1 个答案:

答案 0 :(得分:0)

const $ = cheerio.load(content);
const text = $('.title').text();
console.log(text);