import getBaseUrl from "./getBaseUrl.js";
|
function downloadFile(url, fileName) {
|
const baseUrl = getBaseUrl();
|
const link = document.createElement('a');
|
link.href = baseUrl+url;
|
link.download = fileName;
|
document.body.appendChild(link); // 添加到 DOM
|
link.click();
|
window.URL.revokeObjectURL(url);
|
}
|
|
export default downloadFile;
|