gpt4 book ai didi

Node.js - 在 Cheerio 中使用回调函数

转载 作者:搜寻专家 更新时间:2023-11-01 00:18:47 25 4
gpt4 key购买 nike

我正在 Node 中构建一个爬虫,它使用 requestcheerio加载页面并解析它们。

重要的是我只在 Request 和 Cheerio 完成页面加载后才进行回调。我正在尝试使用 async extension ,但我不确定将回调放在哪里。

request(url, function (err, resp, body) {
var $;
if (err) {
console.log("Error!: " + err + " using " + url);
} else {
async.series([
function (callback) {
$ = cheerio.load(body);
callback();
},
function (callback) {
// do stuff with the `$` content here
}
]);
}
});

我一直在阅读 cheerio documentation并且找不到任何内容加载时的回调示例。

最好的方法是什么?当我在脚本中抛出 50 个 URL 时,它会在 cheerio 正确加载内容之前过早开始移动,并且我正在尝试通过异步加载来遏制任何错误。

我对异步编程和一般的回调完全陌生,所以如果我在这里遗漏了一些简单的东西,请告诉我。

最佳答案

是的,cheerio.load 是同步的,您不需要任何回调。

request(url, function (err, resp, body) {
if (err) {
return console.log("Error!: " + err + " using " + url);
}
var $ = cheerio.load(body);
// do stuff with the `$` content here
});

关于Node.js - 在 Cheerio 中使用回调函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17140589/

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