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

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

正在回答

2 回答

我也是,啊为什么呢?

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

我也遇到同样的问题

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

举报

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

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

进入课程

nodejs 一样的代码,我的为什么就不出结果了

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