如何使用发布参数重定向到外部URL?

时间:2018-11-30 19:40:54

标签: javascript node.js express url-redirection http-redirect

当用户点击我的终点时,必须将其重定向到带有url编码形式参数的外部URL。

终点

https://example.com

表单参数

名称:测试, ID:123456

这就是我现在在Express中尝试过的。它被重定向到URL,但是我不知道如何添加参数。

app.get('/', (req, res) => res.redirect(302,'https://example.com')) 

1 个答案:

答案 0 :(得分:1)

您不能将参数重定向为POT请求。

您有2个选择:

  1. 向查询字符串添加参数:

    示例:https://example.com/?ParameterOne='xxx'

  2. 使用带有参数的res.render,并通过您使用的视图引擎使用以下内容。

    示例:res.render('index',{parameterOne:xxx})