nodejs 一样的代码,我的为什么就不出结果了
为什么我的代码跟老师一样,却不出结果了?
var http = require('http');
var url = 'http://www.imooc.com/learn/348';
http.get(url, function(res){
var html = '';
res.on('data',function(data){
html += data;
});
res.on('end',function(){
console.log(html);
});
}).on('error',function(e){
console.log('获取课程数据出错:'+e.message);
});