廖井涛
5 小时以前 f7a2fcdda7f1120498c5c5f75c5a99955fc54b43
1
2
3
4
5
6
7
export default function downloadFile(url,fileName){
       // 文件的URL地址
    const link = document.createElement('a');
    link.href = url;
    link.setAttribute('download', fileName);
    link.click();
}