728x90 반응형 프로그램/자바스크립트2 fetch 파일다운로드 /* 자바 스크립트 */ function fileDownLoad(fileName,finalFileName,path){ const paramData = { method: 'POST', body: JSON.stringify({ fileName, finalFileName,path }), headers: { 'Content-Type': 'application/json' } }; fetch('/logFarm/downloadFetchFiles.json',paramData) .then(res => res.blob()) .then(data => { const a = document.createElement("a"); a.href = window.URL.createObjectURL(data); a.download = f.. 2023. 7. 12. 국세청 사업자번호 진위확인 var ItemJSON; ItemJSON = '{"b_no": ["'+bNo+'"]}'; console.log("ItemJSON",ItemJSON) URL = "http://api.odcloud.kr/api/nts-businessman/v1/status?serviceKey=발급받은서비스키"; //Your URL var xmlhttp = new XMLHttpRequest(); xmlhttp.onreadystatechange = callbackFunction(xmlhttp); xmlhttp.open("POST", URL, false); xmlhttp.setRequestHeader("Content-Type", "application/json"); // xmlhttp.setRequestHeader('Author.. 2021. 12. 14. 이전 1 다음 728x90 반응형