繁体   English   中英

为什么我总是得到 Null?

[英]Why do I keep getting Null?

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

request('https://www.ratemyprofessors.com/ShowRatings.jsp?tid=1985428', (error, response, html) => {
    if(!error && response.statusCode ==200){
        //console.log(html);
        const $ = cheerio.load(html); 
        
        const profTopComment = $('.Comments__StyledComments-dzzyvm-0 dvnRbr');
        
        console.log(profTopComment.html());
    }
});

我正在尝试创建一个 chrome 扩展来从 RatemyProffessor 中抓取数据,但是当试图从上面的 url 中抓取最有意义的评论时,我一直为空,任何帮助都会很棒!

当我说“获取空值”时,我的意思是 console.log(profTopComment.html()) 在终端中给我空值。

我正在尝试抓取最有用的评级。

  • '.Comments__StyledComments-dzzyvm-0.dvnRbr'第二个"." 需要查找具有two不同类的<div></div>元素
  • 基本上只需将代码中的'.Comments__StyledComments-dzzyvm-0 dvnRbr'更改为'.Comments__StyledComments-dzzyvm-0 dvnRbr' '.Comments__StyledComments-dzzyvm-0.dvnRbr'

例子:

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

async function testFunc() {
  const result = await 
  axios.get('https://www.ratemyprofessors.com/ShowRatings.jsp?tid=1985428');
  const $ = cheerio.load(result.data);
  const profTopComment = $('.Comments__StyledComments-dzzyvm-0.dvnRbr');
  console.log(profTopComment.html());
}
testFunc();

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM