a 标签下载处理跨域的问题

发布于 2023-12-08  82 次阅读


function download (url, fileName) {//跨域文件路径、下载到本地的文件名
        var x = new XMLHttpRequest();
        x.open("GET", url, true);
        x.responseType = 'blob';
        x.onload=function(e) {
            var url = window.URL.createObjectURL(x.response)
            var a = document.createElement('a');
            a.href = url
            a.download = fileName;
            a.click()
        }
        x.send();
    }
ℳ๓古依博學之誌°ꦿ⁵²º᭄
最后更新于 2023-12-08