1234567891011121314151617181920212223242526272829 |
- <!DOCTYPE html>
- <html>
- <head>
- <title>下载页面</title>
- <meta charset="UTF-8">
- </head>
- <body>
- <h1>下载文件</h1>
- <button onclick="downloadFile()">下载</button>
- <script>
- function downloadFile() {
- var xhr = new XMLHttpRequest();
- xhr.open('GET', 'https://dip.rxdptest.k5.bigtree.tech/api/dip-file/file/download?remotePath=xlsx/3f64366cf2dd2bc7198855a9584d31ab.xlsx', true);
- xhr.setRequestHeader('token', 'e95ba497940780fac84c4b04a065b685');
- xhr.responseType = 'blob';
- xhr.onload = function() {
- if (this.status === 200) {
- var blob = new Blob([this.response], {type: 'application/octet-stream'});
- var link = document.createElement('a');
- link.href = window.URL.createObjectURL(blob);
- link.download = 'file.xlsx';
- link.click();
- }
- };
- xhr.send();
- }
- </script>
- </body>
- </html>
|