Skip to content

Instantly share code, notes, and snippets.

View YuJianghao's full-sized avatar
🌏
Learning new world ~

winwin2011 YuJianghao

🌏
Learning new world ~
View GitHub Profile
@YuJianghao
YuJianghao / index.ts
Created September 14, 2022 06:06
saveAsFileFromUrl
import FileSaver from "file-saver";
import request from 'umi-request';
export async function downloadFileBlob(url: string) {
return request(url, {
method: "GET",
responseType: "blob",
headers: {
"Content-Type": "application/octet-stream",
},
});