웹 페이지에서blob 데이터 다운로드 제공

1312 단어
(function(w){
        w.downloadBlob = function download(blob,fileName){
            
            const url = window.URL.createObjectURL(blob);
            const a = document.createElement('a');
            a.style.display = 'none';
            a.href = url;
            a.download = fileName;
            document.body.appendChild(a);
            a.click();
        }
    })(window);
    const downloadButton = document.querySelector('a#download');
    downloadButton.onclick = function(){
        var blob = new Blob([' Blob'],{type: 'text/html'});
        downloadBlob(blob,'test.html');
    };

파일 유형:
html:text/htmlpdf:application/pdf

좋은 웹페이지 즐겨찾기