来自POST的res.redirect

问题描述

AJAX之后,您将无法进行重定向。您需要自己使用Javascript完成。

服务器

post: function(req, res) {
     var login = req.body['login'];          
     app.use(express.bodyParser());


     if (login && req.body['login']['password'] == "tom") {
        var loginPassword = req.body['login']['password'];
        console.log(loginPassword);
        console.log('Granted access');
        res.send({redirect: '/blog'});

     }

     ...

}

客户

$(document).ready ->
    $('#login-button').click () ->
        $.ajax
            url: '/login'
            type: 'POST'
            data: $('#Password').serialize()
            dataType: 'json'
            success: (data, textStatus, jqXHR) ->
                if typeof data.redirect == 'string'
                    window.location = data.redirect

这应该工作。

解决方法

由于某种原因,登录完成后无法重定向到/ blog。在我的登录控制器中,我有以下内容。

module.exports = {

    post: function(req,res) {
         var login = req.body['login'];

         if (login && req.body['login']['password'] == "password") {
            console.log('Granted access');
            res.send({redirect: '/blog'});

         }

         else {
             console.log('wrong password');
             res.redirect('back');

         }

    }

};

jQuery Ajax

$(document).ready ->

    $('#login-button').click () ->

        $.ajax
            url: '/login'
            type: 'POST'
            data: $('#Password').serialize()
            dataType: 'json'
            success: (data,textStatus,jqXHR) ->
                if typeof data.redirect == 'string'
                    window.location = data.redirect

更新为工作代码