方法实现:

1
2
3
4
5
6
7
8
9
function downloadAsFile(data, filename) {
const href = window.URL.createObjectURL(new Blob([data]));
const downloadElement = document.createElement('a');

downloadElement.href = href;
downloadElement.download = filename;
downloadElement.click();
window.URL.revokeObjectURL(href);
}