如何使用post nodejs重定向到另一台服务器?

时间:2014-08-26 02:06:03

标签: node.js http post express request

Nodejs,快递。我有这样的形式:

<form action="https://anothersite.com/post" method="POST">
      <input type="hidden" name="field1" value="val1">
      <input type="hidden" name="field2" value="val2">
      <button type="submit">Send</button>
</form>

我需要这个:

<form action="/mypost" method="POST">
      <button type="submit">Send</button>
</form>

..这意味着我发送空帖到我服务器上的页面/mypost问题:如何通过发送帖子数据重定向到后端的另一台服务器?

0 个答案:

没有答案