Error: connect ECONNREFUSED 127.0.0.1:80
var http = require("http");
var querystring = require("querystring");
var postData = querystring.stringify({
"content":"testttttttttttttttt",
"cid":348
});
var options = {
hotstname:"www.imooc.com",
port:80,
path:"/course/docomment",
method:"POST",
headers:{
"Accept":"application/json, text/javascript, */*; q=0.01",
"Accept-Encoding":"gzip, deflate",
"Accept-Language":"zh-CN,zh;q=0.8",
"Connection":"keep-alive",
"Content-Length":postData.length,
"Content-Type":"application/x-www-form-urlencoded; charset=UTF-8",
"Cookie":"imooc_uuid=7842c58e-5568-4409-acf3-7273c9075ce3; imooc_isnew_ct=1450675135; Hm_lvt_f0cfcccd7b1393990c78efdeebff3968=1456212842,1456212887; loginstate=1; apsid=RlNWVmNjI2NGQ5OWIxOWI4OGYxMzcwMDE4ZTFlMWIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMjczMTExMQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAzMDk0MzgwOUBxcS5jb20AAAAAAAAAAAAAAAAAAAAAADE1ZTNiZjk2ZDcyZjU1ZWE3NTFjOWM3Zjk0NDBhMjBiZNXsV2TV7Fc%3DZj; last_login_username=30943809%40qq.com; PHPSESSID=ru1m4lphfcjmi8uvfub15d2e31; jwplayer.qualityLabel=髿¸; jwplayer.playAuto=true; jwplayer.mute=false; jwplayer.volume=100; IMCDNS=0; imooc_isnew=2; cvde=58079666c7fd8-168",
"Host":"www.imooc.com",
"Origin":"http://www.imooc.com",
"Referer":"http://www.imooc.com/video/8837",
"User-Agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.102 Safari/537.36",
"X-Requested-With":"XMLHttpRequest"
}
};
var req = http.request(options,function (res){
console.log("status: "+ res.statusCode);
console.log("headers: "+JSON.stringify(res.headers));
res.on("data",function(chunk){
console.log(Buffer.isBuffer(chunk));
console.log(typeof chunk);
});
res.on("end",function (){
console.log("enddddddddddddddd")
});
});
req.on("error",function(e){
console.log("error is : "+e);
});
req.write(postData);
req.end();