我有处理文件上传的服务器。它处理内存中的文件。处理完成后,我必须将文件上传到下一个服务器。我怎么能做到这一点?
我express
用来处理文件上传到第一台服务器和restify
客户端与第二台服务器通信。
所以我有这样的事情:
app.post('/first-server',function(req,res,next){
var file_path = req.files.somefile.path;
var param1 = req.param('param1') + 'modified';
var param2 = req.param('param2') + 'modified';
doSomethingWithFile(file_path,function(modified_file_stream){
// now I want to post file (stream) and modified params (param1 & param2) to second server
});
});