在ExpressJS中重定向,发送和获取参数

时间:2019-11-06 10:00:34

标签: node.js reactjs express

我有一个http://localhost:8080上运行的React应用程序。
我正在http://localhost:8081

上运行另一个Express应用程序

Express应用程序必须重定向到具有POST参数的React应用程序。
我可以通过以下代码重定向到其他网址

var express = require("express");
var router = express.Router();

router.post("/", function(req, res) {
  res.redirect("http://localhost:8080/");
});

module.exports = router;

但是,我无法弄清楚如何在React端传递参数以及读取参数。
任何帮助都将受到高度赞赏。
预先感谢。

0 个答案:

没有答案