올리는 쪽의 이름이 일치해야만 인식이 된다.
<body>
<form action="/process/upload" method="post" enctype="multipart/form-data">
<input type="file" name="img">
<input type="submit" value="파일 업로드하기">
</form>
</body>
input 의 name 주목
app.post('/process/upload', upload.single('img'), (req, res, next) => {
res.status(201).send({
message: '저장 성공',
fileInfo: req.file,
});
});
이때 같은 이름이여야만 인식이 된다.