我想检查给Multer的图像字段是否包含该文件。Multer未抛出任何错误,服务器正在处理
abithluo1#
您可以在端点处理程序中更改它。
router.post('/upload-image', multer.single('file'), async (req, res) => { if(!req.file) { console.log('File is not uploaded'); } });
1条答案
按热度按时间abithluo1#
您可以在端点处理程序中更改它。