我有一个http://localhost:8080上运行的React应用程序。
我正在http://localhost:8081
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端传递参数以及读取参数。
任何帮助都将受到高度赞赏。
预先感谢。