var http = require('http');
var querystring = require('querystring');
var postData = querystring.stringify({
'content':'测试一下,为啥不显示',
'mid':8837
})
var options = {
hostname:'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,en;q=0.6',
'Connection':'keep-alive',
'Content-Length':postData.length,
'Content-Type':'application/x-www-form-urlencoded; charset=UTF-8',
'Cookie':/*这个就不贴了*/,
'Host':'www.imooc.com',
'Origin':'http://www.imooc.com',
'Referer':'http://www.imooc.com/video/8837',
'User-Agent':'Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 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('评论完毕!');
})
})
req.on('error',function(e){
console.log('error :'+e.message);
})
req.write(postData)
req.end();