如何将get请求重定向到快递js中的另一个帖子请求?

时间:2018-04-09 11:19:52

标签: node.js express

我想将get请求重定向到另一个服务器帖子。我不知道该怎么做。以下是我的代码。

服务器1:获取方法

app.get('/sampleTestApp', function (req, res) {
   body={uid:'test'}
   // Want to redirect here to server 2 'login/callback' url with body object
}

服务器2:发布方法

app.post('/login/callback', function (req, res) {
   // success process..
}

1 个答案:

答案 0 :(得分:0)

你可以做点什么

app.get('/sampleTestApp', function (req, res) {

axios.post(url:'server2/post', data :body={uid:'test'},fcuntion(response){
res.send(response)
})
}