// 1,先将base64转换为blob
const dataURLtoBlob = (dataurl: any) => {
var arr = dataurl.split(','),
mime = arr[0].match(/:(.*?)
bstr = atob(arr[1]),
n = bstr.length,
u8arr = new Uint8Array(n)
while (n--) {
u8arr[n] = bstr.charCodeAt(n)
}
return new Blob([u8arr], { type: mime })
}
const blobToFile = (theBlob: any, fileName: any) => {
theBlob.lastModifiedDate = new Date()
theBlob.name = fileName
return new File([theBlob], fileName, { type: theBlob.type, lastModified: Date.now() })
}
const url = 'data:image/png;base64,' + res.data
const file: any = blobToFile(dataURLtoBlob(url), 'fileName')