获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
🖕
微信小程序支持blob文件吗dataURLToFile:function(dataurl, filename) { let arr = dataurl.split(','); console.log(arr[0]); let mime = arr[0].match(/:(.*?);/)[1], bstr = atob(arr[1]), n = bstr.length, u8arr = new Uint8Array(n); while (n--) { u8arr[n] = bstr.charCodeAt(n); } return new File([u8arr], filename, { type: mime }); }, 这个是base转为blob文件对象,但是运行的时候File报错 File is not defined;at pages/singature/singature page dataURLToFile function ReferenceError: File is not defined 有没有大佬可以告知,是为什么啊?微信小程序支持blob文件对象吗?
2024-12-12