我正在尝试通过我的 Angular Web 应用程序将大文件(PDF、视频)AWS s3 bucket
上传到. 我正在使用ng-file-upload
将文件上传到我的节点服务器,并且在节点上我正在使用multer-s3
npm 包。
对于小文件,它按预期工作得很好。但我无法使用上传大文件。它也没有给我任何错误。它只是不上传文件(如果文件很大),甚至不进入回调并超时。有什么方法可以处理将大文件上传到 s3 Bucket?
var uploadSingle = upload.single('uploadFile');
router.post('/uploadVideo',function(req,res,next){
uploadSingle(req,res,function(err){
// doesn't come here if the file is large
if(err){
//Error Response , Error while uploading Module PDF;
}
else{
//handling file upload
// success response
}
});
}
如果有人能帮我解决这个问题,不胜感激。如果您知道其他可以帮助我在 AWS s3 存储桶上上传大文件的库,请提出建议。