nodeJS
-
React Native 파일 업로드 예제카테고리 없음 2019. 7. 28. 09:59
React Native에서는 Axios를 활용하여 Node.js 서버로 파일을 전송할 수 있다. 일단 Server에 아래와 같이 파일 업로드를 위한 페이지를 생성한다. Clien가 /api/upload 페이지에 post 메시지를 uploadMiddleware, uploadController를 인자로 요청하면, // Server.js server.express.post("/api/upload", uploadMiddleware, uploadController); Upload 페이지는 uploadMiddleware가 호출되고 client로부터 전달받은 데이터 중 "file"이라는 이름을 가진 파일을 uploads/ 폴더에 저장한다. uploadController는 req 에서 서버에 저장된 file 정보(위치..