반응형

JS 파일 다운로드 구현 시 확장자가 없는 파일을 생성해야 할 때

공백이 먹지 않는 경우 encodeURIComponent 함수를 사용

 

var uriEncodedData = 'data:application/octet-stream;charset=utf-8,' + encodeURIComponent("파일 내용");

$("#아이디").attr("download", "파일명");

$("#아이디").attr("href", uriEncodedData);

$("#아이디").get(0).click();

 

도움을 받은 곳 : https://micropilot.tistory.com/2253

반응형

+ Recent posts