我有一台Express NodeJS服务器。我想上传非常大的文件(超过10Gb的大小)。为此,我尝试了模块multer
和formidable
。
我的问题是我无法在服务器中收到超过1Gb的内容。在浏览器中,我得到ERR_CONNECTION_RESET
。服务器代码不会抛出任何错误。
我的代码formidable
:
var formidable = require("formidable");
form = new formidable.IncomingForm();
form.uploadDir = "./files/";
form.parse(req, function(err, fields, files) {
console.log("received upload");
});
我的代码multer
:
var storage = multer.diskStorage({
destination: function (req, file, cb) {
cb(null, "./files")
}
});
var upload = multer({storage: storage}).array("file",2);
/** ------ **/
upload(req, res, function (err) {
if (err) {
console.log("error");
} else { //success!
console.log("received upload");
}
});
你知道发生了什么吗?
答案 0 :(得分:0)
无需使用multer。尝试使用此代码。
var formidable = require("formidable");
var form = new formidable.IncomingForm();
form.parse(req, function(err, fields, files) {
});
form.on('end', function(fields, files, data) {
var temp_path = this.openedFiles[0].path;
var file_name = openedFiles[0].name;
var new_location = 'public/images/';
fs.move(temp_path, new_location + file_name, function(err) {
if ( err ) console.log(err);
else
console.log('upload-photo success');
});
});