请问为什么报404啊
var http = require('http')
var querystring = require('querystring')
var postData = querystring.stringify({
'content':'请问我测试别的为什么出错啊',
'mid':3763
})
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.8',
'Connection':'keep-alive',
'Content-Length':postData.length,
'Content-Type':'application/x-www-form-urlencoded; charset=UTF-8',
'Cookie':'imooc_uuid=8d9c8966-a654-4dc6-8bdb-391127abd173; imooc_isnew_ct=1489579955; PHPSESSID=1fmfrkuch8m5dpel8f4aivk463; loginstate=1; apsid=g4ZmRhOTQ0Zjc5NTI2NDU1ZWI1NjFjNzk2ZDE5YmUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMjM3MjY3NQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAyNjQ3NjM5NUBxcS5jb20AAAAAAAAAAAAAAAAAAAAAADM2MDRmZGE4ZDlhNGE1ZjE0ZjY4MWFjMzc2YWE4ZTE45p%2FPWOafz1g%3DMz; last_login_username=26476395%40qq.com; IMCDNS=0; Hm_lvt_f0cfcccd7b1393990c78efdeebff3968=1489579960,1489833609,1490001813; Hm_lpvt_f0cfcccd7b1393990c78efdeebff3968=1490177176; imooc_isnew=2; cvde=58cf9f93313ff-287',
'Host':'www.imooc.com',
'Origin':'http://www.imooc.com',
'Referer':'http://www.imooc.com/video/3763',
'User-Agent':'Mozilla/5.0 (Windows NT 10.0; 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()测得不是老师这个评论区,老师这个评论区也是这样报的