how to resend post multipart/form-data form with upload file to different server with node.js (express.js)?

前端 未结 2 1196
刺人心
刺人心 2021-02-19 07:02

I post a form with file (enctype=\"multipart/form-data\") to node.js (express.js framework) and just want to send this same post request like it is just to different server. wha

2条回答
  •  春和景丽
    2021-02-19 07:34

    remove express.bodyParser and try pipes like these:

    req.pipe(request('http://host/url/')).pipe(res)
    

提交回复
热议问题