ログイン処理が正常に終了したら、次のページにクライアントを送信しようとしています。ページは確認ページですが、何らかのエラーが発生しています。 image screenshotログインに成功した後、別のページをリダイレクトする方法
router.post('/sign_in', urlend, function(req, res) {
var email = req.body.user_id;
var password = req.body.password;
if (email != '' && password != '') {
user_modell.findOne({
email: email,
password: password
}, function(err, data) {
if (err) {
//res.status(500).send();
console.log('error');
} else if (!data) {
console.log('Incorrect User ID or Password');
return res.end();
} else {
res.render("confirm");
}
});
}
res.end();
});
返信res.redirect( '/ HomePage'); – Lalit
すでに回答済みhttps://stackoverflow.com/questions/36434978/how-to-redirect-to-another-page-in-node-js – Lalit
私はすでにこれを行っています。問題の添付されているスクリーンショットを参照してください。私は手を使わないエラーイベントに直面していますが、私はresパラメータメーターを使用しています。 –