如果是window下的同學,在安裝cheerio 時,記得先將目錄切換到node 安裝目錄下的 node安裝目錄/node-modules/npm,才會安裝哦,linux下也是同樣的道理,其實安裝模塊,就是復制響應文件到npm下的node_modules下,不信,安裝完后,你看看是不是多了個cheerio文件下——。-,小坑,這都得自己去摸索,稍微吐槽下評論不能帶圖片這個問題,,也不能參與同學評論的回復,有點坑
2016-05-28
var http=require("http");
var url="http://www.xianlaiwan.cn/learn/348";
http.get(url,function(res){
var html='';
res.on("data",function(){
html += data;
});
res.on("end",function(){
console.log(html);
});
}).on("error",function(){
console.log("獲取課程數據出錯");
});
報這個錯,我納悶了,求解
var url="http://www.xianlaiwan.cn/learn/348";
http.get(url,function(res){
var html='';
res.on("data",function(){
html += data;
});
res.on("end",function(){
console.log(html);
});
}).on("error",function(){
console.log("獲取課程數據出錯");
});
報這個錯,我納悶了,求解
2016-05-28