当我尝试爬网不会将内容加载到cheerio时,我正要爬网vue js前端网站。我得到的是一个空白网页。我的代码如下
getSiteContentAsJs = (url) => {
return new Promise((resolve, reject) => {
let j = request.jar();
request.get({url: url, jar: j}, function(err, response, body) {
if(err)
return resolve({body: null, jar: j, error: err});
return resolve({body: body, jar: j, error: null});
});
})
}
我得到的内容如下
const { body, jar, error} = await getSiteContentAsJs(url);
//I passed body to cheerio to get the js object out of the web content
const $ = cheerio.load(body);
,但未呈现任何内容。但网页空白。没有内容。
答案 0 :(得分:1)
我发现cheerio无法运行javascript。由于该网站基于vue前端,因此我需要一个虚拟浏览器,该浏览器实际上运行js并向我呈现输出
所以我没有使用request
,而是使用了幻影来渲染js网页
const phantom = require('phantom');
const cheerio = require('cheerio');
loadJsSite = async (url) => {
const instance = await phantom.create();
const page = await instance.createPage();
await page.on('onResourceRequested', function(requestData) {
console.info('Requesting', requestData.url);
});
const status = await page.open(url);
const content = await page.property('content');
// console.log(content);
// let $ = cheerio.load(content);
await instance.exit();
return {$: cheerio.load(content), content: content};
}
现在我可以得到如下所示的页面
const {$, content} = await loadJsSite(url);
// I can query like this
// get the body
$('body').html();