알쓸전컴(알아두면 쓸모있는 전자 컴퓨터)
javascript 강제 파일 다운로드 코드 본문
javascript 강제 파일 다운로드 코드
함수 코드
downloadTextFile(text, name) {
const a = document.createElement('a');
const type = name.split(".").pop();
a.href = URL.createObjectURL( new Blob([text], { type:`text/${type === "txt" ? "plain" : type}` }) );
a.download = name;
a.click();
},
사용법
this.downloadTextFile(JSON.stringify(gltf), 'myObj.json');
'Web ' 카테고리의 다른 글
tomcat catalina.out log 관리 (0) | 2019.02.17 |
---|---|
WEB 에서 obj+mtl->gltf 컨버터 개발하기 (vue,threejs 사용) (0) | 2019.01.01 |
jsencrypt(RSA) <-> JAVA RSA 사용법 (4) | 2018.12.29 |
RSA 온라인 Demo 사이트 소개 (0) | 2018.12.29 |
webxr googleAR 지원 계획 (0) | 2018.11.26 |
Comments