从Node.JS服务器重定向到路由不会呈现下一页

时间:2017-08-18 02:23:33

标签: node.js reactjs redirect

您好我有一个反应组件呈现如下形式:

<form onSubmit={this.onSubmit}>
  <!-- a bunch of inputs here -->
</form>

其中函数onSubmit()使用axios向/results发布请求:

handleSubmit(e) {
    var self = this;
    e.preventDefault();
    const {value1, value 2, ....} = this.state;
    axios.post('/results', {
        key1 : value1,
        key2 : value2,
        etc.
    }).then(function(response) {
      if (errors) {
          self.setState({errors: response.data.errorMessage});
      } 
    }).catch(function(error){
      console.log(error);
    });
  }

我在server.js中有一个post请求的路由处理程序,它将表单中的数据插入到数据库中。如果有错误,则将该数据发送回客户端,否则应重定向到结果页面。处理程序如下所示:

app.post('/results', function(req, res, next) {
  const reportExists = Report.findOne({
    attributes: ['caseId'],
    where: {caseId : req.body.caseId},
  }).then(report => {
    if (report) {
      console.log("report already exists");
      res.status(200).send({errorMessage : "Report has been submitted for this case id"});
    } else {
      const report = Report.create(
        {
          // data from form
        }
      ).then(() => {
        console.log('Record inserted successfully');
        var caseId = req.body.caseId;
        res.redirect("/results/" + caseId);
        next();
      })
      .catch(err => {
        console.log('failed to insert record');
        res.status(200).send({errorMessage: "Failed to insert record"});
      });
    }
  });
});

我有另一个app.get('/results/:caseId')处理程序,它应该为结果页面呈现适当的路由。但是,当成功插入记录时,它不会重定向到该页面,它会与表单保持在同一页面上。我的问题是,我应该从客户端还是服务器重定向到该页面?

1 个答案:

答案 0 :(得分:1)

通过客户端Javascript提交Ajax调用只是从服务器获取响应,无论它是什么。浏览器不会自动处理重定向,它只是对您的javascript的ajax响应。由客户端Javascript决定如何处理重定向响应。

你有几个选择。您可以在客户端Javascript中检测重定向响应,然后使用新位置设置window.location并手动告诉浏览器转到新页面。或者,您可以让浏览器提交表单而不是客户端Javascript,然后浏览器将自动跟踪重定向响应。

此外,致电next()后,您不应该致电res.redirect()。一旦发送了响应,就不应该启用其他路由处理程序。