gpt4 book ai didi

javascript - 将 cheerio.load() 转换为 DOM 对象

转载 作者:行者123 更新时间:2023-11-30 20:01:14 25 4
gpt4 key购买 nike

我正在尝试学习如何制作网络抓取工具以及如何使用 node.js 将网站内容保存到文本文件中。我的问题是,为了获取内容,我使用的是 cheerio 和 jquery(我想是吧?),我对它们没有任何经验。我正在尝试获取从 cheerio 获得的结果并将其转换为我有更多处理经验的 DOM 对象。如何从 cheerio 获取 html 并将其转换为 DOM 对象?提前致谢!

const request = require('request');
const cheerio = require('cheerio');

request('https://www.wuxiaworld.com/novel/overgeared/og-chapter-153',(error, response, html) => {
if(!error & response.statusCode == 200) {
const $ = cheerio.load(html);
console.log(html);
html.getElementsByClassName('fr-view')[1];//I want the ability to do this

}
})

最佳答案

您正在使用 cheerio ,那里的第一个示例向您展示了如何添加类并使用 HTML 获取字符串。

您可以将代码更改为如下所示:

const request = require('request');
const cheerio = require('cheerio');

request('https://www.wuxiaworld.com/novel/overgeared/og-chapter-153',(error, response, html) => {
if(!error & response.statusCode == 200) {
const $ = cheerio.load(html);
const result = $('.my-calssName').html(); // cheerio api to find by css selector, just like jQuery.
console.log(result);
}
})

关于javascript - 将 cheerio.load() 转换为 DOM 对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53358617/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com