我试图在节点js服务器上提供XMLHttprequest(POST)。
服务器端:
y
客户方:
app.use(bodyParser.urlencoded({extended:true}));
app.use(bodyParser.json());
app.post('/count', function(request, response){
console.log(request.body);
response.send(request.body);
});
我得到的输出是[object Object]
我哪里错了?
答案 0 :(得分:1)
在客户端添加setrequestheader解决了这个问题。
xmlhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");