我正在尝试使用res.end('{"success" : "Updated Successfully", "status" : 200}');
向ajax请求发送成功状态,但遇到此错误:错误:发送后无法设置标头。基本上当用户数据保存在服务器上时,我希望ajax刷新页面,尽管如此,我想在app.post中的某个地方,在我尝试手动执行之前正在发送成功消息。如何防止将任何成功消息发送到ajax post请求,以便我可以手动完成。
app.post('/signup', function (req, res) {
var userDetails = User({
username: req.body.username,
email: req.body.email,
password: bcrypt.hashSync(req.body.password1, bcrypt.genSaltSync(10))
});
User.findOne({
$or: [{
'username': req.body.username
}, {
'email': req.body.email
}]
}, function (err, user) {
if (user) {
if (allClients.indexOf(req.body.socket)) {
if (user.username === req.body.username) {
io.to(req.body.socket).emit('userInfo', 'That username is already in use.');
} else {
}
if (user.email === req.body.email) {
io.to(req.body.socket).emit('userInfo', 'That email is already in use.');
} else {
}
} else {
console.log('timeout error 822')
}
} else {
req.login(userDetails, function (err) {
if (!err) {
userDetails.save(function (err) {
if (err) throw err;
res.end('{"success" : "Updated Successfully", "status" : 200}');
res.redirect('/');
});
} else {
console.log(err)
}
})
}
if (err) {
return done(err);
}
});
});
这是我的ajax请求
$("#form1").submit(function(e) {
e.preventDefault();
$.ajax({
datatype: "json",
type: "POST",
url: '/signup',
data: $(this).serialize(),
success: function(result)
{
console.log(result);
if(result.status == 200){
window.location.reload(true);
}
}
});
});
答案 0 :(得分:0)
我认为问题在于代码:
res.end('{"success" : "Updated Successfully", "status" : 200}');
res.redirect('/');
仅用
替换上述内容res.status(200).send({"success" : "Updated Successfully", "status" : 200})
res.redirect是将用户带到另一个页面(它调用get路由)。您得到的错误是因为节点在将响应发送回ajax或重定向之间感到困惑。