状态码404求大佬帮忙解答
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/document',
method:'POST',
headers:{
'Accept':'application/json, text/javascript, */*; q=0.01',
'Accept-Encoding':'gzip, deflate',
'Accept-Language':'zh-CN,zh;q=0.9',
'Connection':'keep-alive',
'Content-Length':postData.length,
'Content-Type':'application/x-www-form-urlencoded; charset=UTF-8',
'Cookie':'imooc_uuid=7ebe3128-7eb0-449b-ab7e-3458eadf96a9; imooc_isnew=1; imooc_isnew_ct=1510385716; IMCDNS=0; PHPSESSID=8f4lrdvhvvcpp8r1lksoihe5r0; loginstate=1; apsid=ZjZjYxNWQyOTUyMTFmOGU3M2RmNTQ0NzlkNThkMzEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANTA2OTA0OQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4Nzk3NzczNDJAcXEuY29tAAAAAAAAAAAAAAAAAAAAAGQxZWM1NjQxZGIyMjgxNWYwMGQwZjc5OTM1NTIwZTJk1KcHWtSnB1o%3DOG; last_login_username=879777342%40qq.com; Hm_lvt_f0cfcccd7b1393990c78efdeebff3968=1510385718,1510451152; Hm_lpvt_f0cfcccd7b1393990c78efdeebff3968=1510451159; cvde=5a07a7ca3d51d-10',
'Host':'www.imooc.com',
'Origin':'http://www.imooc.com',
'Referer':'http://www.imooc.com/video/8837',
'User-Agent':'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.89 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.messsage);
})
req.write(postData);
req.end()