使用Express设置cookie之后,如何重定向URL



这是我在Express路由器中的登录代码:

if (password === realpassword) {
    res.cookie('thecookie', 'somethingliketoken');
    res.redirect(302, '/somepages');
} else {
    res.status(403).end();
}

我想设置cookie,以便 /somepages可以识别谁是这个用户。

但是我有错误 Error: Can't set headers after they are sent.

我已经尝试了return res.redirect(302, '/somepages');。对/somepages的查询已正确发送,但该页面仍留在我的/login中。

请帮助。

我想我有原因。我使用Ajax发布了用户名和密码,因此将302重定向发送到Ajax查询,是的,它成功地重定向了,但是是针对Ajax Query Query ,而不是为页面,这就是为什么第二个查询是为什么收到但页面没有更改。

          this.$http({
                url: '/userLogin',
                method: 'post',
                data: {
                    username: this.username,
                    password: SHA3(this.password, {outputLength: 256}).toString(),
                },
            }).then(res => {
                console.log(res);
                this.hintColor = '#00bdd8';
                this.hint = 'success';
            }).catch(err => {
                this.hintColor = 'red';
                if (err.response.status == 403) {
                    this.hint = 'mismatch';
                } else {
                    this.hint = '500err';
                }
            });

我认为不应该这样使用。

将使用 window.location而不是。

如果还有其他方法,我真的很感谢您的帮助。

我在我的登录帖子请求中做过这样的事情,它对我有用。

app.post('/index',function(req,res){
  var uname = req.body.Username;
  var pwd = req.body.Password;
  if(uname && pwd === 'admin'){
    var token = jwt.sign( { username: uname }, 'q1W2e3R4t5Y6u7I8o9P',{ expiresIn: '1m' }
      );
    res.cookie('auth',token);
    res.redirect('home');
    console.log('Authentication is done successfully.....');
    console.log(token);
  }
});

相关内容

  • 没有找到相关文章

最新更新