前端file-saver保存文件
本文作者:程序员飞云
本站地址:https://www.flycode.icu (opens new window)
地址
file-saver (opens new window)
使用
使用file-saver可以直接通过url下载文件,而不用通过后端编写流来下载
export function downloadImage(url?: string, fileName?: string) {
if (!url) {
return
}
saveAs(url, fileName)
}
1
2
3
4
5
6
7
8
9
10
11
12