get 不能获取到 网页数据
下面的代码获取不到网页的数据
http.get('http://www.meet99.com/map-beijing.html
',function(content){
var html = '';
content.on('data',function(data){
html += data;
});
content.on('end',function(){
console.log(html);
});
}).on('error',function(e){
console.log('ERROR:'+e);
});