작성
·
345
0
안녕하세요.
multer limits 에서 설정된 값보다 더 큰 이미지를 올리면 에러가 나야하는 거 맞나요?
제가 사용자에게 지정된 크기 이상의 이미지를 올리면 경고를 보내주려고 하는데 limit 1MB 설정하고
1.3MB 짜리 이미지를 올렸는데 왜 network 탭에는 아래 사진과 같이 사이즈가 자동으로 변환(465B) 돼서 올라가는지 모르겠습니다.
참고로 람다 적용안했습니다.
routes/profile.js
const upload = multer({
storage: multerS3({
s3: new AWS.S3(),
bucket: 'react-profiler2-s3',
key(req, file, cb) {
cb(null, `original/${Date.now()}_${path.basename(file.originalname)}`);
},
}),
limit: { fileSize: 1 * 1024 * 1024 },
});
...
router.post('/image', isLoggedIn, upload.single('image'), async (req, res, next) => {
console.log('req.file🔥🔥🔥🔥🔥🔥🔥🔥🔥', req.file);
console.log('req.file.location🔥🔥🔥🔥🔥🔥🔥🔥🔥', req.file.location);
try {
if (!req.file) {
return res.json('defaultProfile.jpeg');
}
res.json(req.file.location);
} catch (error) {
console.error(error);
res.json('이미지 최대 용량은 ~MB 입니다.');
}
});
limits 오타입니다.