简易'爬虫',也说不上是不是
发布于 8 年前 作者 miss61008596 2357 次浏览 来自 分享
const cheerio = require('cheerio');
var fetch = require ('node-fetch');

fetch('http://www.bwlc.net/bulletin/keno.html')
    .then(function(response) {
        return response.text()
    }).then(function(body) {
    const $ = cheerio.load(body);
    let periodNum = $('div .lott_cont table tr td').html();
    console.log(parseInt(periodNum, 10));
    console.log($('div .lott_cont table tr td').next().html());
    console.log($('div .lott_cont table tr td').next().next().html());
    console.log($('div .lott_cont table tr td').next().next().next().html());
}).catch(err => {
    console.log(err);
});
回到顶部