안녕하세요
MulterError: Unexpected field. name property 다를 경우 본문
MulterError: Unexpected field
에러 원인: input의 name property와 upload.single("") 의 값이 다를 경우
그런데 같게 써도 오류납니다.
<input type="file" name="프로필" />
app.post("/upload", upload.single("프로필"), (요청, 응답) => {
응답.send("업로드 성공");
});
해결 방법: 영어로 씁시다.
한글이라 오류납니다.
<input type="file" name="profile" />
app.post("/upload", upload.single("profile"), (요청, 응답) => {
응답.send("업로드 성공");
});
=> 잘 됩니다.
'스터디 > 코딩애플' 카테고리의 다른 글
MongoDB - multer 이미지 업로드하기 (0) | 2023.01.07 |
---|---|
MongoDB - Express Router 라우터 만들기 (0) | 2023.01.07 |
MongoDB - 에러: Cannot set headers after they are sent to the client (0) | 2023.01.06 |
MongoDB - 중복ID체크, ID/Password 유효성 검사 (0) | 2023.01.06 |
MongoDB - 회원기능 게시물 작성자만 삭제하기 (0) | 2023.01.06 |