1、拿到file文件
2、Blob转换格式,type类似自定义
new Blob([this.file], { type: "image/png" })
3、根据Blob转换url
URL.createObjectURL(new Blob([this.file], { type: "image/png" }))
效果
2024-01-07 12:29:22
1、拿到file文件
2、Blob转换格式,type类似自定义
new Blob([this.file], { type: "image/png" })
3、根据Blob转换url
URL.createObjectURL(new Blob([this.file], { type: "image/png" }))
效果