NodeJS 当我试图在multer中传递一个空字段时,会出现什么错误

6yjfywim  于 2022-12-18  发布在  Node.js
关注(0)|答案(1)|浏览(74)

我想检查给Multer的图像字段是否包含该文件。
Multer未抛出任何错误,服务器正在处理

abithluo

abithluo1#

您可以在端点处理程序中更改它。

router.post('/upload-image', multer.single('file'), async (req, res) => {

  if(!req.file) {
    console.log('File is not uploaded');
  } 

});

相关问题