알쓸전컴(알아두면 쓸모있는 전자 컴퓨터)

javascript 강제 파일 다운로드 코드 본문

Web

javascript 강제 파일 다운로드 코드

백곳 2019. 1. 1. 02:31

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');


Comments