doq1969 2017-09-24 18:41
浏览 213
已采纳

在app.post路由中的express.js res.redirect没有重定向到给定的URL

I'm using express.js and app.post route is used to validate user and redirect valid user to PHP page using the res.redirect(), but instead of redirecting it is displaying Found. Redirecting to http://localhost/home.php

my server.js code is as follows:

app.post('/set_node_session', function(req, res){
    sess = req.session; 

    var usermail = req.body.field1;
    var password = req.body.field2;

    var sql="SELECT * FROM userInfo WHERE userEmail='"+usermail+"'";    
    con.query(sql, function (err, result, fields) {
        if (err) throw err;     
        sess.user_id=result[0].userId;
        sess.first_name=result[0].userFname;
        sess.last_name=result[0].userLname;

        if(sess.user_id) {
            res.redirect('http://localhost/home.php');
        }
        else {
            res.redirect('http://localhost/login.php');
        }
    });  
});
  • 写回答

1条回答 默认 最新

  • duanquezhan7268 2017-09-24 18:52
    关注

    nodejs:

    var resp = sess.user_id ? '1' : '0';
    res.send(resp );

    and in your php:

    $result = curl_exec($ch);
    
    if(result == 1){
        header("Location: http://localhost/home.php");
    }
    else{
        header("Location: http://localhost/login.php");
    }
    die();

    </div>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?