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:”+ strUrl); console.log(“=================================”); if(strUrl != null) { RNPrint.print({ filePath: strUrl }) } } |
III. 결론
오픈소스로 되어있는것을 Import하기만 하면 되서 간단히 처리할수 있었다.