cheerioJS无法从页面中获取元素

时间:2019-12-14 02:17:33

标签: web-scraping cheerio

我在用cheerio js抓取元素时遇到问题。

我打开了以下网站-> https://www.voobly.com/ladder/view/Age-of-Mythology-The-Titans/1v1-Supremacy

当我查看页面源代码时,我可以看到id-> pagebrowser1,但是当我尝试使用cheerio抓取它时,它返回null。

enter image description here

enter image description here

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

axios.get('https://www.voobly.com/ladder/view/Age-of-Mythology-The-Titans/1v1-Supremacy').then((res) => {
    const $ = cheerio.load(res.data)    

    console.log($("#pagebrowser1").html());
});

0 个答案:

没有答案