在 ajax post 请求的情况下,nodejs req.body 未定义
奇怪的问题,我对此没有解释。我创建了Ajax发布请求
$.ajax({
type: "POST",
url: "/like",
data: {"topic": "123123"},
success: function(dataString) {
console.log('123123');
}
});
或这样的:
var xhttp = new XMLHttpRequest();
xhttp.open("POST", "/like", true);
xhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
xhttp.send("fname=Henry&lname=Ford");
在服务器端(nodejs)我有简单的代码,
app.post('/like', function (req, res) {
console.log(req.body);
res.status(201).send('+1')
});
我不理解的是,为什么我在发送AJAX POST请求时会一直收到不确定的原因。
Strange issue and I have no explanation to that. I create ajax post request
$.ajax({
type: "POST",
url: "/like",
data: {"topic": "123123"},
success: function(dataString) {
console.log('123123');
}
});
Or like this:
var xhttp = new XMLHttpRequest();
xhttp.open("POST", "/like", true);
xhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
xhttp.send("fname=Henry&lname=Ford");
on server side (NodeJs) I have simple code
app.post('/like', function (req, res) {
console.log(req.body);
res.status(201).send('+1')
});
what I dont understand, is why I receive all the time undefined when I send ajax post request.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要使用身体解析器,请参见:nodejs.dev/learn/get-http-request-body-data-- using nodejs
You need to use a body parser, see: nodejs.dev/learn/get-http-request-body-data-using-nodejs