我在开发中使用MEAN堆栈。这是代码的示例摘录,该代码在使用执行注销时自动将客户端浏览器从服务器端重定向。
exports.signout = function(req, res) {
req.logout();
res.redirect('/');
};
现在,假设我正在使用节点请求模块进行发布请求,如何在发布请求成功后通过服务器端将用户重定向到主页。
var requestValue = {
url: 'abc.com/endpoint',
method: 'post',
json: true
};
request(requestValue, function(err, response, body) {
if (body) {
// redirect user to home page
}
});