如何使用 post 参数重定向到外部 URL?
Posted
技术标签:
【中文标题】如何使用 post 参数重定向到外部 URL?【英文标题】:How to redirect to external URL with post parameters? 【发布时间】:2019-05-02 23:35:50 【问题描述】:当用户到达我的终点时,它必须被重定向到带有 url 编码表单参数的外部 URL。
终点
https://example.com
表单参数
名称:测试, 编号:123456
这是我现在在 Express 中尝试的。它被重定向到 URL,但我不知道如何添加参数。
app.get('/', (req, res) => res.redirect(302,'https://example.com'))
【问题讨论】:
【参考方案1】:您不能将参数作为 POT 请求进行重定向。
你有两个选择:
为查询字符串添加参数:
示例:https://example.com/?ParameterOne='xxx'
通过你使用的视图引擎使用res.render
,带参数并使用以下内容。
示例:res.render('index', parameterOne: xxx)
【讨论】:
以上是关于如何使用 post 参数重定向到外部 URL?的主要内容,如果未能解决你的问题,请参考以下文章
重定向到`Java`中的get方法时如何从url中删除参数[重复]