/**
* 下載一個文件并按指定的文件名保存
* @param {String} url 要下載的鏈接
* @param {String} fileName 保存的文件名
*/
export function downloadFile(url: string, fileName: string) {
const el = document.createElement( "a" );
el.style.display = "none" ;
el.setAttribute( "target" , "_blank" );
el.href = url;
if (fileName) {
el.setAttribute( "download" , fileName);
}
document.body.appendChild(el);
el.click();
document.body.removeChild(el);
}
浙公網安備 33010602011771號