Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Express-fileupload をミドルウェアとして使用し、POSTMAN を API として使用しています。他のファイル拡張子ではなく jpg 画像のみをアップロードするにはどうすればよいですか?
を確認してmimetype、そうでない場合はエラーをスローできます.jpg
mimetype
.jpg
例えば:
app.post('/upload', function(req, res) { if (req.files.image.mimetype !== "jpg") { throw new Error("Only supports jpg file format"); } });