cd ..

使用 FileReader 本地预览

本地上传文件,可以使用 FileReader 对文件进行预览。

ts
const fileBlob = file.raw ? file.raw : file

if(fileBlob instanceof Blob){
  const fileReader = new FileReader()
  fileReader.readAsDataURL(fileBlob)
  fileReader.onload = (e) => {
    const result = e.target.result
  }
}
CC BY-NC-SA 4.02022-PRESENT © Elone Hoo