如何使用JS将图像显示为Blob对象

时间:2018-08-08 21:37:12

标签: javascript image blob web-frontend

当我将其登录到控制台时,我的函数返回一个blob对象:

$locationProvider.html5Mode(true)

我想用JavaScript向用户显示此图像,怎么办?

1 个答案:

答案 0 :(得分:2)

尝试

const blobUrl = URL.createObjectURL(blob) // blob is the Blob object

上面的代码行应生成一个Blob URL,您可以将其设置为图像源。

image.src = blobUrl // image is the image element from the DOM