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>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 求差集那个函数有问题,有无佬可以解决
  • ¥15 【提问】基于Invest的水源涵养
  • ¥20 微信网友居然可以通过vx号找到我绑的手机号
  • ¥15 寻一个支付宝扫码远程授权登录的软件助手app
  • ¥15 解riccati方程组
  • ¥15 display:none;样式在嵌套结构中的已设置了display样式的元素上不起作用?
  • ¥15 使用rabbitMQ 消息队列作为url源进行多线程爬取时,总有几个url没有处理的问题。
  • ¥15 Ubuntu在安装序列比对软件STAR时出现报错如何解决
  • ¥50 树莓派安卓APK系统签名
  • ¥65 汇编语言除法溢出问题