[DEV] 기록

[javascript] JSZip을 활용하여 form에 올라간 zip 파일 내 json 파일 읽기

꾸준함. 2022. 3. 16. 16:07

개요

제목 그대로 form에 zip 파일을 업로드하면 zip 파일 내 json 파일을 읽어서 form을 채워야 하는 요구사항이 들어왔습니다.

stackoverflow와 구글을 엄청 찾아본 결과 해당 기능은 외부 라이브러리인 JSZip을 이용하여 구현할 수 있었고 기록 차원에서 간단하게 코드를 남겨봅니다.

 

코드


 

참고

https://stackoverflow.com/questions/65281900/how-to-read-specific-value-from-json-in-an-archived-file-using-javascript-and

 

how to read specific value from json in an archived file. Using javascript ,and jszip

I am reading a json file from within a zip file using jszip. I can open it and get the information that I want into the console from my function. I can't however get that information out of my java...

stackoverflow.com

 

반응형