[태그:] PDF

React Native PDF 출력

I. 목표 앱상에서 웹상에 있는 PDF를 출력하는것을 목표로 한다. II. 연구 및 개발내용 1. 모듈설치 npm install –save react-to-print 2. 구현 가. 모듈 Import import RNPrint from “react-native-print”; 나. PDF 출력 웹으로 부터 URL을 수신받아 RNPrint.print({filePath: PDF경로}}) 명령을 이용하여 출력한다. if(consts.MSG_REQUEST_LABEL_PRINT == strMsgId) {     let strUrl = objData.msgData;     console.log(“=================================”);     console.log(“*MSG_REQUEST_LABEL_PRINT, strUrl:”+ […]

더보기