我在谷歌上搜索了很多如何在 express js 中保护文件上传,最后我开发了以下代码来做到这一点。
app.use(express.json());
app.use(express.urlencoded());
app.post('/',express.bodyParser({
keepExtensions: true,
uploadDir: __dirname + '/faxFiles',
limit: '20mb'
}),function(req,res){
checkFile(req.files.faxFile);
});
如您所见,我可以限制文件大小并在bodyParser中设置uploadDir,现在我只需要允许用户上传图片和pdf,我使用的方式是checkFile
包含以下代码的函数。
var fs = require('fs');
var checkFile = function(faxFile){
if (faxFile.type != "image/jpeg" || faxFile.type != "application/pdf" || faxFile.type != "image/gif"){
fs.unlink(faxFile.path, function(err){
});
}
}
但我认为这不是最好的方法,有没有其他方法可以做到这一点?比如在 bodyParser 构造函数中设置文件扩展名?