base64转换为file类型 点击头像,选择文件 点击选取时,获取base64文件 这里使用了Vue-ImgCut插件(后续博客介绍) 代码讲解 function base64toFile(dataurl, filename = "file") { let arr = dataurl.split(",") } console.log(arr) 👇 let mime = arr[0].match(/:(.*?);/)[1]; console.log(mime) 👇 console.log(arr[0].match(/:(.*?);/))👇