Node.js Express - 파일 업로드


Node.js Express - 파일 업로드

노드에서 폼데이터와 Multer를 이용하여 파일 업로드를 진행해 볼게요. 하면서 파일 이름이 중복되면 안 되니까 파일 이름도 같이 바꿔보도록 할게요.. Multer 모듈을 먼저 설치해줍니다. npm install multer 하고 저는 업로드하는 Router를 따로 만들어 줬습니다. 프로젝트 구조 index.js에 파일 업로드 폼 추가 <form action="upload" method="post" enctype="multipart/form-data"> <h3>파일 업로드</h3> <div class="input-group mb-3"> <input type="file" class="form-control" name="file"> </div> <div class="d-grid gap-2 mb-3"> <input type="submit" class="btn btn-primary" value="전송하기"> </div> </form> upload.js var express = require...



원문링크 : Node.js Express - 파일 업로드