-
过程一查看全部
-
// 小爬虫 爬取慕课网的了联系方式 var http=require('http'); // 导入http模块 var url='http://www.imooc.com/learn/348'; var cheerio=require('cheerio'); // 导入cheerio模块 function makeConcatInfo(html) { var $=cheerio.load(html); var lis=$('#footer .footer_link li'); lis.each(function (index,item) { console.log((index+1)+"."+$(this).text()+"\n"); }); } // get 请求 http.get(url,function (res) { var html=''; res.on('data',function (data) { // html html+=data; }); res.on('end',function () { // console.log(html); makeConcatInfo(html); }); }).on('error',function () { console.log('LOCAL ERROR!!!'); }); // 爬取结果 // 1.网站首页 // 2.企业合作 // 3.人才招聘 // 4.联系我们 // 5.合作专区 // 6.关于我们 // 7.讲师招募 // 8.意见反馈 // 9.友情链接查看全部
-
一、nodejs.org看看nodejs的版本升级,新特性的加入,重要bug的修复等 二、www.npmjs.com模块社区,看他人源代码,省力 三、github.com大量的项目和源码 四、stackoverflow.com技术解答社区以及查询相关资源,环境配置,异常均可找到答案查看全部
-
以123.com 为例,COM 是根域名,123.com是人们经常提到的顶级域名,主域名可以理解为你的网站的访问域名,一般是www.123.com查看全部
-
http请求5查看全部
-
http请求4查看全部
-
http请求3查看全部
-
http请求2查看全部
-
http请求步骤1查看全部
-
浏览器发起dns系统调用查看全部
-
请求!查看全部
-
听不懂、、查看全部
-
fsafsdafsa查看全部
-
> url.parse('http:8080/pms/list?list=20',true) Url { protocol: 'http:', slashes: null, auth: null, host: null, port: null, hostname: null, hash: null, search: '?list=20', query: { list: '20' }, pathname: '8080/pms/list', path: '8080/pms/list?list=20', href: 'http:8080/pms/list?list=20' } > querystring.parse('name=scott&course=jade&course=node&from=') { name: 'scott', course: [ 'jade', 'node' ], from: '' } > querystring.stringify({name:'scott',course:['jade','node'],from:''}, ',') 'name=scott,course=jade,course=node,from=' > querystring.escape('<哈哈>') '%3C%E5%93%88%E5%93%88%3E' > querystring.unescape('%3C%E5%93%88%E5%93%88%3E') '<哈哈>'查看全部
-
node.js版本的稳定性查看全部
举报
0/150
提交
取消