为了账号安全,请及时绑定邮箱和手机立即绑定

运行出现一大段空白,但是没有打印,自己盯着代码看了好几遍,实在没发现错误,求解答

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');

var courseData=[];// save every chapter

chapters.each(function(item){

var chapter=$('this');

var chapterTitle=chapter.find('strong').text();

var videos=chapter.find('.video').children('li');

var chapterData={

title:chapterTitle,

videos:[]

};//save a chapter

videos.each(function(item){

var video=$(this).find('.J-media-item');

var videoTitle=video.text();

console.log(videoTitle);

var videoId=video.attr('href').split('video/')[1];

             chapterData.videos.push({

              title:videoTitle,

              id:videoId

             });

})

//console.log('222');

   courseData.push(chapterData);

});

return courseData;

}

function print(courseData){

courseData.forEach(function(item){

console.log(item.title+'\n');

item.videos.forEach(function(video){

console.log(video.title+':'+video.id+'\n');

});

});

};


http.get(url,function(res){

var html='';

res.on('data',function(data){

html+=data;

})

res.on('end',function(){

var courseData=filterChapters(html);

print(courseData);

})


}).on('error',function(){

console.log('http error');

})

http://img1.sycdn.imooc.com//591c51cd0001818f06660346.jpg

正在回答

1 回答

var chapter=$('this'); 应该是  var chapter=$(this);

0 回复 有任何疑惑可以回复我~
#1

慕粉0300152458 提问者

谢谢你
2017-05-25 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
进击Node.js基础(一)
  • 参与学习       219397    人
  • 解答问题       896    个

本视频教程带你揭开Node.js的面纱,带你走进一个全新世界

进入课程

运行出现一大段空白,但是没有打印,自己盯着代码看了好几遍,实在没发现错误,求解答

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信