我正在尝试从Ajax post请求中返回一些值,但我在控制台中看不到任何值。这里缺少什么?
快速
app.post('/register',function(req,res) {
//console.log(JSON.stringify(req.body)); // it works
res.send(req.body); // it doesn't work on client side.
});
的jQuery
$("#register").submit(function (e) {
e.preventDefault();
var data = {};
data.username = $('#username').val();
data.email = $('#email').val();
data.password1 = $('#password1').val();
data.password2 = $('#password2').val();
if (data.password1 == data.password2) {
alert("okay");
$.ajax({
type: 'POST',
data: JSON.stringify(data),
contentType: 'application/json',
url: '/register',
success: function (data) {
console.log(data.username + data.email + data.password1 + data.password2);
// nothing returns, why?
}
});
} else {
$('.register-now').after('<div class="alert alert-danger" role="alert"> ' +
'You entered two different passwords. ' +
'</div>');
}
});
答案 0 :(得分:2)
我很困惑,你说
但我在控制台中看不到任何值
然后你说
的console.log(JSON.stringify(req.body)); //它有效吗
是什么给出了?
答案 1 :(得分:0)
我在看终端而不是浏览器控制台。它没有错;它有效。