Multer 返回空响应
Multer is returning a empty response
我正在上传图片,但是当我尝试实现一个功能时,我可以更改文件名以包含存储后的日期。
使用下面的代码,我将得到一个空对象,但仍然是一条成功消息。
但是如果我在代码中取消注释它会工作但它不会包括日期。
const express = require("express");
const multer = require("multer");
const app = express();
const fileFilter = function(req, file, cb){
const allowedTypes = ["image/jpeg","image/png", "image/gif"];
if(!allowedTypes.includes(file.mimetype)) {
const error = new Error("wrong file type");
error.code = "LIMIT_FILE_TYPES";
return cb(error, false);
}
cb(null, true);
}
const storage = multer.diskStorage({
destination:function(req, file, cb){
cb(null, './uploads/')
},
filename:function(req, file, cb){
cb(null, file + '-' + Date.now())
}
});
const MAX_SIZE = 200000
const upload = multer({
// dest: './uploads/', If I un-comment this line it will upload the image but will not change file name will still be random hash numbers
fileFilter,
storage:storage,
limits:{
fileSize: MAX_SIZE
}
});
app.post('/upload', upload.single('file'), (req, res) => {
res.json({file:req.file});
});
app.use(function(err, req, res, next) {
if(err.code === "LIMIT_FILE_TYPES") {
res.status(422).json({error:"Only Images are Allowed"});
return;
}
if (err.code ==="LIMIT_FILE_SIZE"){
res.status(422).json({error:`Size is to Large, Max size is ${MAX_SIZE/
1000}KB`});
return;
}
});
app.listen(3344, () => console.log("running local on 3344"));
它 returns 未定义,因为您正在创建一个组合文件对象 + '-' + Date.now() 的字符串,所以更改此行:
cb(null, file + '-' + Date.now())
给这个:
cb(null, file.fieldname + '-' + Date.now())
它应该能胜任。
我正在上传图片,但是当我尝试实现一个功能时,我可以更改文件名以包含存储后的日期。
使用下面的代码,我将得到一个空对象,但仍然是一条成功消息。 但是如果我在代码中取消注释它会工作但它不会包括日期。
const express = require("express");
const multer = require("multer");
const app = express();
const fileFilter = function(req, file, cb){
const allowedTypes = ["image/jpeg","image/png", "image/gif"];
if(!allowedTypes.includes(file.mimetype)) {
const error = new Error("wrong file type");
error.code = "LIMIT_FILE_TYPES";
return cb(error, false);
}
cb(null, true);
}
const storage = multer.diskStorage({
destination:function(req, file, cb){
cb(null, './uploads/')
},
filename:function(req, file, cb){
cb(null, file + '-' + Date.now())
}
});
const MAX_SIZE = 200000
const upload = multer({
// dest: './uploads/', If I un-comment this line it will upload the image but will not change file name will still be random hash numbers
fileFilter,
storage:storage,
limits:{
fileSize: MAX_SIZE
}
});
app.post('/upload', upload.single('file'), (req, res) => {
res.json({file:req.file});
});
app.use(function(err, req, res, next) {
if(err.code === "LIMIT_FILE_TYPES") {
res.status(422).json({error:"Only Images are Allowed"});
return;
}
if (err.code ==="LIMIT_FILE_SIZE"){
res.status(422).json({error:`Size is to Large, Max size is ${MAX_SIZE/
1000}KB`});
return;
}
});
app.listen(3344, () => console.log("running local on 3344"));
它 returns 未定义,因为您正在创建一个组合文件对象 + '-' + Date.now() 的字符串,所以更改此行:
cb(null, file + '-' + Date.now())
给这个:
cb(null, file.fieldname + '-' + Date.now())
它应该能胜任。