zoukankan      html  css  js  c++  java
  • Node2.js

    Node.js简单爬虫的爬取,也是跟着慕课网上抄的,网站有一点点改动,粘上来好复习嘛

    var http = require('http')
    var cheerio = require('cheerio')
    var url = 'http://www.imooc.com/learn/348'
    
    
    function filterChapters(html){
        var $ = cheerio.load(html)
    
        var chapters =$('.chapter')
    
        // [{
        //     chapterTitle:'',
        //     videos:[
        //     title:'', 
        //     id:''
        //     ]
        // }]
        // 
        
        var courseData=[]
    
    
    
        chapters.each(function(item){
    
            var chapter = $(this)
    
          
            var chapterTitle = chapter.find('h3').text()
    
            // var videos =chapter.find('.video').children('li')
             var videos =chapter.find('.video').children('li')
            var chapterData = {
                chapterTitle: chapterTitle,
                videos:[]
            }
    
    
    
            videos.each(function(item){
                var video = $(this).find('.J-media-item')
                var videoTitle = video.text()
               //  var id = video.attr('href').split('video/')[1]
                  // var id = video.find('.data-media-id').text();
                   var id = video.attr('href').split('/video/')[1]
                chapterData.videos.push({
                    title: videoTitle,
                    id: id
                })
    
            })
    
    
            courseData.push(chapterData)
        })
    
        return courseData
    }
    
    
    
    
    function printCourseInfo(courseData){
        courseData.forEach(function(item){
             var chapterTitle = item.chapterTitle
    
             console.log(chapterTitle+ '
    ')
    
             item.videos.forEach(function(video){
                console.log('【'+video.id+'】'+video.title+'
    ')
             })
        })
    }
    
    
    
    
    http.get(url, function(res){
        var html = ''
    
        res.on('data', function(data){
            html += data;
        })
    
        res.on('end', function(){
           // filterChapters(html)
            var courseData = filterChapters(html)
    //console.log(courseData+'finish'+'
    ')
          printCourseInfo(courseData)
        })
    }).on('error',function(){
        console.log('获取课程数据出错')
    })

    效果

    数据还有一点没整理好得日后再弄

    就是把不想要的也取回来了,现在还不懂怎么数据清洗干净,先记下来。

  • 相关阅读:
    AUSU 安装Win10注意事项
    华硕笔记本无法设置U盘启动,快捷启动不能识别
    postgres 得到所有表空间 和 表空间的位置
    python 远程链接、搜索与下载
    python 读取 postgreSQL 数据保存CSV文件
    weka 初练之 文本分类
    基于springMVC+mybatis的实践记录
    简单的springMVC + mybatis 编写程序流程
    sql查询 生成列号
    通过资源文件 验证拦截机制
  • 原文地址:https://www.cnblogs.com/ironSheet-SRS/p/9990640.html
Copyright © 2011-2022 走看看