Node.js Express - 게시판 첨부파일 업로드, 다운로드


Node.js Express - 게시판 첨부파일 업로드, 다운로드

게시글을 작성할 때 첨부파일을 노드 서버에 올리고 다운로드할 수 있습니다. 파일 업로드와 동시에 DB에 첨부파일 관련 정보를 입력합니다. 게시글에 test_file.txt를 첨부파일로 올려볼게요. 업로드할 test_file.txt 게시판 DDL 정보 CREATE TABLE `board` ( `idx` int(11) NOT NULL AUTO_INCREMENT, `writer` varchar(20) DEFAULT NULL, `password` varchar(20) DEFAULT NULL, `title` varchar(100) DEFAULT NULL, `content` text DEFAULT NULL, `date` datetime DEFAULT NULL, `del_yn` enum('Y','N') DEFAULT 'N', `file_o_name` varchar(100) DEFAULT NULL, `file_c_name` varchar(100) DEFAULT NULL, `file_path` va...



원문링크 : Node.js Express - 게시판 첨부파일 업로드, 다운로드