使用express发出axios post请求后重定向

时间:2018-04-01 19:21:56

标签: node.js reactjs express redirect axios

接受Axios的发布请求后,我无法让重定向工作。我知道请求正在发送,并且它至少从'/'路由获得一些响应,因为我的控制台记录了“index”,“用户验证”这是当有人向'/'发出请求时应该发生的事情”。问题是页面没有加载。我甚至在谷歌浏览器的网络选项卡中看到index.js已加载但无论我尝试过什么页面都不会改变!这有什么理由吗?

我所做的其他重定向似乎有效。例如,如果用户未登录,索引页面将重新路由到/ login。这似乎只是post请求的问题,我已经使用和不使用护照身份验证进行了测试(显然已经更改了您需要记录在重定向)和它是相同的结果。所以我认为护照不会引起这个问题。

您可以参考下面的package.json来查看我正在使用的内容

axios代码:

axios.post('/login', {username: username, password: password})
        /*.then(response => res.redirect('/'))*/
        .then(function (response) {
            console.log(response);
        })
        .catch(function(error) {
            console.log(error);
        })

表达方面:我在测试期间有控制台日志提醒自己

 server.get('/', (req,res) =>{
    console.log("Index");
  if (req.user){
       console.log("user verified");
        res.redirect('/');
        app.render(req,res, '/',req.query);
  } else {
      console.log("user not logged in");
      res.redirect('/login');
  }
})

server.post('/login', passport.authenticate('local'), (req, res, next) => {
    if (req.user) {
        console.log("Logging in");
        res.redirect('/');
  } else {
        console.log("Passwrod Incorrect");
        return res.redirect('/login');
  }
})

的package.json

{
  "name": "layout-component",
  "version": "1.0.0",
  "scripts": {
    "dev": "node ./server.js",
    "build": "next build",
    "start": "NODE_ENV=production node ./server.js"
  },
  "dependencies": {
    "@zeit/next-css": "^0.1.5",
    "axios": "^0.18.0",
    "bcryptjs": "^2.4.3",
    "body-parser": "^1.18.2",
    "connect-flash": "^0.1.1",
    "connect-mongo": "^2.0.1",
    "cookie-parser": "^1.4.3",
    "express": "^4.16.3",
    "express-session": "^1.15.6",
    "express-validator": "^5.1.0",
    "file-loader": "^1.1.11",
    "hoist-non-react-statics": "^2.5.0",
    "jsonwebtoken": "^8.2.0",
    "mongodb": "^3.0.5",
    "mongoose": "^5.0.12",
    "next": "^5.1.0",
    "passport": "^0.4.0",
    "passport-local": "^1.0.0",
    "prop-types": "^15.6.1",
    "react": "^16.3.0",
    "react-dom": "^16.3.0",
    "semantic-ui-css": "^2.3.1",
    "semantic-ui-react": "^0.79.0",
    "url-loader": "^1.0.1"
  },
  "license": "ISC"
}

2 个答案:

答案 0 :(得分:5)

我想到了这个。显然,当您发出Axios发布请求时,您无法从服务器进行重定向。至少不是我这样做的方式(使用默认的Axios配置。)您需要在客户端进行页面更改。我是怎么做到的。

这真让我难过,因为我使用其他方法从我的重定向路由接收数据,但页面没有加载。

另外,出于某种原因使用Next.js,passport.js" successRedirect"和" failureRedirect" JSON似乎不起作用。这就是为什么我按照我的方式编写路由并且不包括passport.authenticate()函数中的路由。我希望这有助于某人!

我的Axios提交功能:

onSubmit = (e) => {
    e.preventDefault()
    const {username, password} = this.state;
    axios.post('/login', {username: username, password: password})
        .then(function (response) {
            if (response.data.redirect == '/') {
                window.location = "/index"
            } else if (response.data.redirect == '/login'){
                window.location = "/login"
            }
        })
        .catch(function(error) {
            window.location = "/login"
        })
}

我的Express服务器中的帖子请求

server.post('/login', passport.authenticate('local'), (req, res, next) => {
    if (req.user) {
        var redir = { redirect: "/" };
        return res.json(redir);
  } else {
        var redir = { redirect: '/login'};
        return res.json(redir);
  }
})

答案 1 :(得分:0)

尽管这不是服务器端重定向,但是可以使用Axios的“拦截器”在客户端上完全完成此重定向,该拦截器可以在将请求或响应传递给then / {{ 1}}:

catch

https://github.com/axios/axios#interceptors

相关问题