函数 getBlobByUrl

根据URL获取Blob对象

getFileBlobByUrl('https://example.com/file.txt').then(blob => {
console.log(blob)
})
  • 参数

    • url: string

      文件下载url地址

    返回 Promise<Blob>